mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 20:40:00 -04:00
4418. [bug] Fix a compiler warning in GSSAPI code. [RT #42879]
This commit is contained in:
parent
388a80b087
commit
4c2fcac334
2 changed files with 3 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue