mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-06 01:25:44 +00:00
Replace custom isc_boolean_t with C standard bool type
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
/*! \file dst/gssapi.h */
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <isc/formatcheck.h>
|
||||
#include <isc/lang.h>
|
||||
@@ -52,7 +53,7 @@ ISC_LANG_BEGINDECLS
|
||||
***/
|
||||
|
||||
isc_result_t
|
||||
dst_gssapi_acquirecred(const dns_name_t *name, isc_boolean_t initiate,
|
||||
dst_gssapi_acquirecred(const dns_name_t *name, bool initiate,
|
||||
gss_cred_id_t *cred);
|
||||
/*
|
||||
* Acquires GSS credentials.
|
||||
@@ -185,7 +186,7 @@ gss_error_tostring(uint32_t major, uint32_t minor,
|
||||
* Users should copy the string if they wish to keep it.
|
||||
*/
|
||||
|
||||
isc_boolean_t
|
||||
bool
|
||||
dst_gssapi_identitymatchesrealmkrb5(const dns_name_t *signer,
|
||||
const dns_name_t *name,
|
||||
const dns_name_t *realm);
|
||||
@@ -196,7 +197,7 @@ dst_gssapi_identitymatchesrealmkrb5(const dns_name_t *signer,
|
||||
*
|
||||
*/
|
||||
|
||||
isc_boolean_t
|
||||
bool
|
||||
dst_gssapi_identitymatchesrealmms(const dns_name_t *signer,
|
||||
const dns_name_t *name,
|
||||
const dns_name_t *realm);
|
||||
|
Reference in New Issue
Block a user