From 54d91d0666ac7539b0a8fe26fc4cb795ade1a042 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Fri, 15 Mar 2013 02:16:39 -0400 Subject: [PATCH] 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 . --- src/lib/gssapi/krb5/k5unseal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2