From: Luke Howard Date: Tue, 13 Sep 2011 05:08:02 +0000 (+1000) Subject: cast to match signedness X-Git-Tag: tr-beta1~115 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot.git;a=commitdiff_plain;h=7a6a4f33fbf04fd838da398271af8a50b938fe02;hp=3542d9138f215e1e6d2b5a649274a7a807b5b1b3 cast to match signedness --- 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; }