4418. [bug] Fix a compiler warning in GSSAPI code. [RT #42879]

This commit is contained in:
Witold Krecicki 2016-07-21 12:18:37 +02:00
parent 388a80b087
commit 4c2fcac334
2 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,5 @@
4418. [bug] Fix a compiler warning in GSSAPI code. [RT #42879]
4414. [bug] Corrected a bug in the MIPS implementation of
isc_atomic_xadd(). [RT #41965]

View file

@ -685,7 +685,7 @@ gss_accept_sec_context_spnego(OM_uint32 *minor_status,
if (ot != NULL && ot->length != 0U)
gss_release_buffer(&minor_status2, ot);
return (ret != GSS_S_COMPLETE ? ret : major_status);
return (ret != GSS_S_COMPLETE ? (OM_uint32) ret : major_status);
}
/* decapsulate.c */