mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
Replace custom isc_u?intNN_t types with C99 u?intNN_t types
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
@@ -539,7 +540,7 @@ dst_gssapi_releasecred(gss_cred_id_t *cred) {
|
||||
* call chain for reporting to the user.
|
||||
*/
|
||||
static void
|
||||
gss_err_message(isc_mem_t *mctx, isc_uint32_t major, isc_uint32_t minor,
|
||||
gss_err_message(isc_mem_t *mctx, uint32_t major, uint32_t minor,
|
||||
char **err_message)
|
||||
{
|
||||
char buf[1024];
|
||||
@@ -840,7 +841,7 @@ dst_gssapi_deletectx(isc_mem_t *mctx, gss_ctx_id_t *gssctx)
|
||||
}
|
||||
|
||||
char *
|
||||
gss_error_tostring(isc_uint32_t major, isc_uint32_t minor,
|
||||
gss_error_tostring(uint32_t major, uint32_t minor,
|
||||
char *buf, size_t buflen) {
|
||||
#ifdef GSSAPI
|
||||
gss_buffer_desc msg_minor = GSS_C_EMPTY_BUFFER,
|
||||
|
Reference in New Issue
Block a user