diff options
author | neilbrown <neilbrown> | 2006-03-28 00:48:27 +0000 |
---|---|---|
committer | neilbrown <neilbrown> | 2006-03-28 00:48:27 +0000 |
commit | 2ca793c93c09d0bc180b8eed9819206fd42aff21 (patch) | |
tree | f2178bfa004750e9b56d8330949a1be7f36bd657 /utils/gssd/svcgssd_proc.c | |
parent | 4ce79c4ef9d40b9df12e1f55c2fbb7a75744052c (diff) | |
download | nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.tar.gz nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.tar.xz nfs-utils-2ca793c93c09d0bc180b8eed9819206fd42aff21.zip |
Update krb5 code to use glue routine lucid context functions
The gssd code should not know about the glue layer's context structure.
A previous patch added gss_export_lucid_sec_context() and
gss_free_lucid_sec_context() functions to the gssapi glue layer.
Use these functions rather than calling directly to the Kerberos
gssapi code (which requires the Kerberos context handle rather
than the glue's context handle).
(really this time)
Diffstat (limited to 'utils/gssd/svcgssd_proc.c')
-rw-r--r-- | utils/gssd/svcgssd_proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gssd/svcgssd_proc.c b/utils/gssd/svcgssd_proc.c index b43a023..fd1076e 100644 --- a/utils/gssd/svcgssd_proc.c +++ b/utils/gssd/svcgssd_proc.c @@ -365,7 +365,7 @@ handle_nullreq(FILE *f) { /* kernel needs ctx to calculate verifier on null response, so * must give it context before doing null call: */ - if (serialize_context_for_kernel(ctx, &ctx_token)) { + if (serialize_context_for_kernel(ctx, &ctx_token, mech)) { printerr(0, "WARNING: handle_nullreq: " "serialize_context_for_kernel failed\n"); maj_stat = GSS_S_FAILURE; |