Fix pointer types for gss_wrap()/gss_unrap()

We were using the incorrect type for the context for these two calls.
No practical effects, but some noise from the compiler about the wrong
pointer type.
This commit is contained in:
Pierre Ossman 2017-07-10 15:12:26 +02:00
parent b236a3698f
commit 71f1cfb909

4
cssp.c
View File

@ -173,7 +173,7 @@ cssp_gss_get_service_name(char *server, gss_name_t * name)
} }
static RD_BOOL static RD_BOOL
cssp_gss_wrap(gss_ctx_id_t * ctx, STREAM in, STREAM out) cssp_gss_wrap(gss_ctx_id_t ctx, STREAM in, STREAM out)
{ {
int conf_state; int conf_state;
OM_uint32 major_status; OM_uint32 major_status;
@ -212,7 +212,7 @@ cssp_gss_wrap(gss_ctx_id_t * ctx, STREAM in, STREAM out)
} }
static RD_BOOL static RD_BOOL
cssp_gss_unwrap(gss_ctx_id_t * ctx, STREAM in, STREAM out) cssp_gss_unwrap(gss_ctx_id_t ctx, STREAM in, STREAM out)
{ {
OM_uint32 major_status; OM_uint32 major_status;
OM_uint32 minor_status; OM_uint32 minor_status;