diff options
author | Renato Botelho <renato@netgate.com> | 2016-04-25 09:24:04 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-04-25 09:24:04 -0300 |
commit | d3c47eaa9d2ca52cf936c0801b144ff5a228ad56 (patch) | |
tree | 264c7f84714038dc366de9298876def5ec56bbc3 /lib/libgssapi/gss_get_mic.c | |
parent | ea9ba1a51b165fe4540662a900bb800f501bdf74 (diff) | |
parent | dce9e3914e6275f657335fa04e3ccf117d07edda (diff) | |
download | FreeBSD-src-d3c47eaa9d2ca52cf936c0801b144ff5a228ad56.zip FreeBSD-src-d3c47eaa9d2ca52cf936c0801b144ff5a228ad56.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'lib/libgssapi/gss_get_mic.c')
-rw-r--r-- | lib/libgssapi/gss_get_mic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libgssapi/gss_get_mic.c b/lib/libgssapi/gss_get_mic.c index dff3b54..b55a796 100644 --- a/lib/libgssapi/gss_get_mic.c +++ b/lib/libgssapi/gss_get_mic.c @@ -40,13 +40,14 @@ gss_get_mic(OM_uint32 *minor_status, gss_buffer_t message_token) { struct _gss_context *ctx = (struct _gss_context *) context_handle; - struct _gss_mech_switch *m = ctx->gc_mech; + struct _gss_mech_switch *m; _gss_buffer_zero(message_token); if (ctx == NULL) { *minor_status = 0; return (GSS_S_NO_CONTEXT); } + m = ctx->gc_mech; return (m->gm_get_mic(minor_status, ctx->gc_ctx, qop_req, message_buffer, message_token)); |