From 7a6a4f33fbf04fd838da398271af8a50b938fe02 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Tue, 13 Sep 2011 15:08:02 +1000 Subject: [PATCH] cast to match signedness --- moonshot/mech_eap/util_krb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonshot/mech_eap/util_krb.c b/moonshot/mech_eap/util_krb.c index 779c812..8589aa0 100644 --- a/moonshot/mech_eap/util_krb.c +++ b/moonshot/mech_eap/util_krb.c @@ -280,7 +280,7 @@ rfc3961ChecksumTypeForKey(OM_uint32 *minor, #endif /* HAVE_KRB5INT_C_MANDATORY_CKSUMTYPE */ if (!krb5_c_is_keyed_cksum(*cksumtype)) { - *minor = KRB5KRB_AP_ERR_INAPP_CKSUM; + *minor = (OM_uint32)KRB5KRB_AP_ERR_INAPP_CKSUM; return GSS_S_FAILURE; } -- 2.1.4