From: Greg Hudson Date: Fri, 15 Mar 2013 06:16:39 +0000 (-0400) Subject: Fix argument type in kg_unseal_v1 X-Git-Tag: krb5-1.12-alpha1~266 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54d91d0666ac7539b0a8fe26fc4cb795ade1a042;p=thirdparty%2Fkrb5.git Fix argument type in kg_unseal_v1 The caller of kg_unseal_v1 passes a gss_qop_t * for the qop_state parameter, so make it use that type instead of an int *. Noted by David Benjamin . --- diff --git a/src/lib/gssapi/krb5/k5unseal.c b/src/lib/gssapi/krb5/k5unseal.c index fa9a3cb167..aae74fcd11 100644 --- a/src/lib/gssapi/krb5/k5unseal.c +++ b/src/lib/gssapi/krb5/k5unseal.c @@ -67,7 +67,7 @@ kg_unseal_v1(context, minor_status, ctx, ptr, bodysize, message_buffer, int bodysize; gss_buffer_t message_buffer; int *conf_state; - int *qop_state; + gss_qop_t *qop_state; int toktype; { krb5_error_code code;