mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-19 22:58:53 -04:00
char mechbuf[17] -> unsigned char mechbuf[17]
This commit is contained in:
parent
89266715e6
commit
c5296e040b
1 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: spnego.c,v 1.8.118.2 2009/01/18 23:47:40 tbox Exp $ */
|
||||
/* $Id: spnego.c,v 1.8.118.3 2009/07/20 01:54:46 marka Exp $ */
|
||||
|
||||
/*! \file
|
||||
* \brief
|
||||
|
|
@ -622,7 +622,7 @@ gss_accept_sec_context_spnego(OM_uint32 *minor_status,
|
|||
}
|
||||
|
||||
for (i = 0; !found && i < init_token.mechTypes.len; ++i) {
|
||||
char mechbuf[17];
|
||||
unsigned char mechbuf[17];
|
||||
size_t mech_len;
|
||||
|
||||
ret = der_put_oid(mechbuf + sizeof(mechbuf) - 1,
|
||||
|
|
|
|||
Loading…
Reference in a new issue