From 7b76d6719fa19482f66b89a8070def52dd02a775 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Fri, 28 Dec 2018 12:19:01 -0600 Subject: [PATCH] Fix VC warning about enctypes --- lib/gssapi/mech/gss_krb5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gssapi/mech/gss_krb5.c b/lib/gssapi/mech/gss_krb5.c index 8151bb40c..f81df431d 100644 --- a/lib/gssapi/mech/gss_krb5.c +++ b/lib/gssapi/mech/gss_krb5.c @@ -432,7 +432,7 @@ GSSAPI_LIB_FUNCTION OM_uint32 GSSAPI_LIB_CALL gss_krb5_set_allowable_enctypes(OM_uint32 *minor_status, gss_cred_id_t cred, OM_uint32 num_enctypes, - int32_t *enctypes) + krb5_enctype *enctypes) { krb5_error_code ret; OM_uint32 maj_status;