diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-18 17:40:25 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-10-18 17:40:25 -0700 |
commit | 30191d1a5704ad2b158386b511558972d539ce47 (patch) | |
tree | 4f46e5c4f28f672ab661aa18f45745860970a88c /source3/nsswitch | |
parent | 789856f63ff73fec66298e95c91c60db7bdaf14e (diff) | |
download | samba-30191d1a5704ad2b158386b511558972d539ce47.tar.gz samba-30191d1a5704ad2b158386b511558972d539ce47.tar.bz2 samba-30191d1a5704ad2b158386b511558972d539ce47.zip |
RIP BOOL. Convert BOOL -> bool. I found a few interesting
bugs in various places whilst doing this (places that assumed
BOOL == int). I also need to fix the Samba4 pidl generation
(next checkin).
Jeremy.
(This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/wb_client.c | 30 | ||||
-rw-r--r-- | source3/nsswitch/wbinfo.c | 72 | ||||
-rw-r--r-- | source3/nsswitch/wins.c | 4 |
3 files changed, 53 insertions, 53 deletions
diff --git a/source3/nsswitch/wb_client.c b/source3/nsswitch/wb_client.c index 59664e0719..3e3c140fae 100644 --- a/source3/nsswitch/wb_client.c +++ b/source3/nsswitch/wb_client.c @@ -32,7 +32,7 @@ NSS_STATUS winbindd_request_response(int req_type, /* Call winbindd to convert a name to a sid */ -BOOL winbind_lookup_name(const char *dom_name, const char *name, DOM_SID *sid, +bool winbind_lookup_name(const char *dom_name, const char *name, DOM_SID *sid, enum lsa_SidType *name_type) { struct winbindd_request request; @@ -62,7 +62,7 @@ BOOL winbind_lookup_name(const char *dom_name, const char *name, DOM_SID *sid, /* Call winbindd to convert sid to name */ -BOOL winbind_lookup_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid, +bool winbind_lookup_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid, const char **domain, const char **name, enum lsa_SidType *name_type) { @@ -111,7 +111,7 @@ BOOL winbind_lookup_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid, return True; } -BOOL winbind_lookup_rids(TALLOC_CTX *mem_ctx, +bool winbind_lookup_rids(TALLOC_CTX *mem_ctx, const DOM_SID *domain_sid, int num_rids, uint32 *rids, const char **domain_name, @@ -223,7 +223,7 @@ BOOL winbind_lookup_rids(TALLOC_CTX *mem_ctx, /* Call winbindd to convert SID to uid */ -BOOL winbind_sid_to_uid(uid_t *puid, const DOM_SID *sid) +bool winbind_sid_to_uid(uid_t *puid, const DOM_SID *sid) { struct winbindd_request request; struct winbindd_response response; @@ -256,7 +256,7 @@ BOOL winbind_sid_to_uid(uid_t *puid, const DOM_SID *sid) /* Call winbindd to convert uid to sid */ -BOOL winbind_uid_to_sid(DOM_SID *sid, uid_t uid) +bool winbind_uid_to_sid(DOM_SID *sid, uid_t uid) { struct winbindd_request request; struct winbindd_response response; @@ -290,7 +290,7 @@ BOOL winbind_uid_to_sid(DOM_SID *sid, uid_t uid) /* Call winbindd to convert SID to gid */ -BOOL winbind_sid_to_gid(gid_t *pgid, const DOM_SID *sid) +bool winbind_sid_to_gid(gid_t *pgid, const DOM_SID *sid) { struct winbindd_request request; struct winbindd_response response; @@ -323,7 +323,7 @@ BOOL winbind_sid_to_gid(gid_t *pgid, const DOM_SID *sid) /* Call winbindd to convert gid to sid */ -BOOL winbind_gid_to_sid(DOM_SID *sid, gid_t gid) +bool winbind_gid_to_sid(DOM_SID *sid, gid_t gid) { struct winbindd_request request; struct winbindd_response response; @@ -357,7 +357,7 @@ BOOL winbind_gid_to_sid(DOM_SID *sid, gid_t gid) /* Call winbindd to convert SID to uid */ -BOOL winbind_sids_to_unixids(struct id_map *ids, int num_ids) +bool winbind_sids_to_unixids(struct id_map *ids, int num_ids) { struct winbindd_request request; struct winbindd_response response; @@ -405,7 +405,7 @@ BOOL winbind_sids_to_unixids(struct id_map *ids, int num_ids) return (result == NSS_STATUS_SUCCESS); } -BOOL winbind_idmap_dump_maps(TALLOC_CTX *memctx, const char *file) +bool winbind_idmap_dump_maps(TALLOC_CTX *memctx, const char *file) { struct winbindd_request request; struct winbindd_response response; @@ -423,7 +423,7 @@ BOOL winbind_idmap_dump_maps(TALLOC_CTX *memctx, const char *file) return (result == NSS_STATUS_SUCCESS); } -BOOL winbind_allocate_uid(uid_t *uid) +bool winbind_allocate_uid(uid_t *uid) { struct winbindd_request request; struct winbindd_response response; @@ -448,7 +448,7 @@ BOOL winbind_allocate_uid(uid_t *uid) return True; } -BOOL winbind_allocate_gid(gid_t *gid) +bool winbind_allocate_gid(gid_t *gid) { struct winbindd_request request; struct winbindd_response response; @@ -473,7 +473,7 @@ BOOL winbind_allocate_gid(gid_t *gid) return True; } -BOOL winbind_set_mapping(const struct id_map *map) +bool winbind_set_mapping(const struct id_map *map) { struct winbindd_request request; struct winbindd_response response; @@ -495,7 +495,7 @@ BOOL winbind_set_mapping(const struct id_map *map) return (result == NSS_STATUS_SUCCESS); } -BOOL winbind_set_uid_hwm(unsigned long id) +bool winbind_set_uid_hwm(unsigned long id) { struct winbindd_request request; struct winbindd_response response; @@ -516,7 +516,7 @@ BOOL winbind_set_uid_hwm(unsigned long id) return (result == NSS_STATUS_SUCCESS); } -BOOL winbind_set_gid_hwm(unsigned long id) +bool winbind_set_gid_hwm(unsigned long id) { struct winbindd_request request; struct winbindd_response response; @@ -541,7 +541,7 @@ BOOL winbind_set_gid_hwm(unsigned long id) simple wrapper function to see if winbindd is alive **********************************************************************/ -BOOL winbind_ping( void ) +bool winbind_ping( void ) { NSS_STATUS result; diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 26ae2aff89..2a1fe615ab 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -28,10 +28,10 @@ extern int winbindd_fd; -static char winbind_separator_int(BOOL strict) +static char winbind_separator_int(bool strict) { struct winbindd_response response; - static BOOL got_sep; + static bool got_sep; static char sep; if (got_sep) @@ -97,7 +97,7 @@ static const char *get_winbind_domain(void) /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the form DOMAIN/user into a domain and a user */ -static BOOL parse_wbinfo_domain_user(const char *domuser, fstring domain, +static bool parse_wbinfo_domain_user(const char *domuser, fstring domain, fstring user) { @@ -126,7 +126,7 @@ static BOOL parse_wbinfo_domain_user(const char *domuser, fstring domain, /* pull pwent info for a given user */ -static BOOL wbinfo_get_userinfo(char *user) +static bool wbinfo_get_userinfo(char *user) { struct winbindd_request request; struct winbindd_response response; @@ -157,7 +157,7 @@ static BOOL wbinfo_get_userinfo(char *user) } /* pull pwent info for a given uid */ -static BOOL wbinfo_get_uidinfo(int uid) +static bool wbinfo_get_uidinfo(int uid) { struct winbindd_request request; struct winbindd_response response; @@ -186,7 +186,7 @@ static BOOL wbinfo_get_uidinfo(int uid) } /* pull grent for a given group */ -static BOOL wbinfo_get_groupinfo(char *group) +static bool wbinfo_get_groupinfo(char *group) { struct winbindd_request request; struct winbindd_response response; @@ -215,7 +215,7 @@ static BOOL wbinfo_get_groupinfo(char *group) /* List groups a user is a member of */ -static BOOL wbinfo_get_usergroups(char *user) +static bool wbinfo_get_usergroups(char *user) { struct winbindd_request request; struct winbindd_response response; @@ -244,7 +244,7 @@ static BOOL wbinfo_get_usergroups(char *user) /* List group SIDs a user SID is a member of */ -static BOOL wbinfo_get_usersids(char *user_sid) +static bool wbinfo_get_usersids(char *user_sid) { struct winbindd_request request; struct winbindd_response response; @@ -274,7 +274,7 @@ static BOOL wbinfo_get_usersids(char *user_sid) return True; } -static BOOL wbinfo_get_userdomgroups(const char *user_sid) +static bool wbinfo_get_userdomgroups(const char *user_sid) { struct winbindd_request request; struct winbindd_response response; @@ -302,7 +302,7 @@ static BOOL wbinfo_get_userdomgroups(const char *user_sid) /* Convert NetBIOS name to IP */ -static BOOL wbinfo_wins_byname(char *name) +static bool wbinfo_wins_byname(char *name) { struct winbindd_request request; struct winbindd_response response; @@ -328,7 +328,7 @@ static BOOL wbinfo_wins_byname(char *name) /* Convert IP to NetBIOS name */ -static BOOL wbinfo_wins_byip(char *ip) +static bool wbinfo_wins_byip(char *ip) { struct winbindd_request request; struct winbindd_response response; @@ -354,7 +354,7 @@ static BOOL wbinfo_wins_byip(char *ip) /* List trusted domains */ -static BOOL wbinfo_list_domains(BOOL list_all_domains) +static bool wbinfo_list_domains(bool list_all_domains) { struct winbindd_request request; struct winbindd_response response; @@ -396,7 +396,7 @@ static BOOL wbinfo_list_domains(BOOL list_all_domains) /* List own domain */ -static BOOL wbinfo_list_own_domain(void) +static bool wbinfo_list_own_domain(void) { d_printf("%s\n", get_winbind_domain()); @@ -404,7 +404,7 @@ static BOOL wbinfo_list_own_domain(void) } /* show sequence numbers */ -static BOOL wbinfo_show_sequence(const char *domain) +static bool wbinfo_show_sequence(const char *domain) { struct winbindd_request request; struct winbindd_response response; @@ -441,7 +441,7 @@ static BOOL wbinfo_show_sequence(const char *domain) /* Show domain info */ -static BOOL wbinfo_domain_info(const char *domain_name) +static bool wbinfo_domain_info(const char *domain_name) { struct winbindd_request request; struct winbindd_response response; @@ -479,7 +479,7 @@ static BOOL wbinfo_domain_info(const char *domain_name) } /* Get a foreign DC's name */ -static BOOL wbinfo_getdcname(const char *domain_name) +static bool wbinfo_getdcname(const char *domain_name) { struct winbindd_request request; struct winbindd_response response; @@ -505,7 +505,7 @@ static BOOL wbinfo_getdcname(const char *domain_name) } /* Find a DC */ -static BOOL wbinfo_dsgetdcname(const char *domain_name, uint32_t flags) +static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags) { struct winbindd_request request; struct winbindd_response response; @@ -535,7 +535,7 @@ static BOOL wbinfo_dsgetdcname(const char *domain_name, uint32_t flags) /* Check trust account password */ -static BOOL wbinfo_check_secret(void) +static bool wbinfo_check_secret(void) { struct winbindd_response response; NSS_STATUS result; @@ -557,7 +557,7 @@ static BOOL wbinfo_check_secret(void) /* Convert uid to sid */ -static BOOL wbinfo_uid_to_sid(uid_t uid) +static bool wbinfo_uid_to_sid(uid_t uid) { struct winbindd_request request; struct winbindd_response response; @@ -582,7 +582,7 @@ static BOOL wbinfo_uid_to_sid(uid_t uid) /* Convert gid to sid */ -static BOOL wbinfo_gid_to_sid(gid_t gid) +static bool wbinfo_gid_to_sid(gid_t gid) { struct winbindd_request request; struct winbindd_response response; @@ -607,7 +607,7 @@ static BOOL wbinfo_gid_to_sid(gid_t gid) /* Convert sid to uid */ -static BOOL wbinfo_sid_to_uid(char *sid) +static bool wbinfo_sid_to_uid(char *sid) { struct winbindd_request request; struct winbindd_response response; @@ -630,7 +630,7 @@ static BOOL wbinfo_sid_to_uid(char *sid) return True; } -static BOOL wbinfo_sid_to_gid(char *sid) +static bool wbinfo_sid_to_gid(char *sid) { struct winbindd_request request; struct winbindd_response response; @@ -653,7 +653,7 @@ static BOOL wbinfo_sid_to_gid(char *sid) return True; } -static BOOL wbinfo_allocate_uid(void) +static bool wbinfo_allocate_uid(void) { uid_t uid; @@ -665,7 +665,7 @@ static BOOL wbinfo_allocate_uid(void) return True; } -static BOOL wbinfo_allocate_gid(void) +static bool wbinfo_allocate_gid(void) { gid_t gid; @@ -679,7 +679,7 @@ static BOOL wbinfo_allocate_gid(void) /* Convert sid to string */ -static BOOL wbinfo_lookupsid(char *sid) +static bool wbinfo_lookupsid(char *sid) { struct winbindd_request request; struct winbindd_response response; @@ -706,7 +706,7 @@ static BOOL wbinfo_lookupsid(char *sid) /* Lookup a list of RIDs */ -static BOOL wbinfo_lookuprids(char *domain, char *arg) +static bool wbinfo_lookuprids(char *domain, char *arg) { size_t i; DOM_SID sid; @@ -782,7 +782,7 @@ static BOOL wbinfo_lookuprids(char *domain, char *arg) /* Convert string to sid */ -static BOOL wbinfo_lookupname(char *name) +static bool wbinfo_lookupname(char *name) { struct winbindd_request request; struct winbindd_response response; @@ -808,7 +808,7 @@ static BOOL wbinfo_lookupname(char *name) /* Authenticate a user with a plaintext password */ -static BOOL wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags) +static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags) { struct winbindd_request request; struct winbindd_response response; @@ -869,7 +869,7 @@ static BOOL wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags) /* Authenticate a user with a plaintext password */ -static BOOL wbinfo_auth(char *username) +static bool wbinfo_auth(char *username) { struct winbindd_request request; struct winbindd_response response; @@ -909,7 +909,7 @@ static BOOL wbinfo_auth(char *username) /* Authenticate a user with a challenge/response */ -static BOOL wbinfo_auth_crap(char *username) +static bool wbinfo_auth_crap(char *username) { struct winbindd_request request; struct winbindd_response response; @@ -1009,7 +1009,7 @@ static BOOL wbinfo_auth_crap(char *username) /* Authenticate a user with a plaintext password and set a token */ -static BOOL wbinfo_klog(char *username) +static bool wbinfo_klog(char *username) { struct winbindd_request request; struct winbindd_response response; @@ -1067,7 +1067,7 @@ static BOOL wbinfo_klog(char *username) /* Print domain users */ -static BOOL print_domain_users(const char *domain) +static bool print_domain_users(const char *domain) { struct winbindd_request request; struct winbindd_response response; @@ -1108,7 +1108,7 @@ static BOOL print_domain_users(const char *domain) /* Print domain groups */ -static BOOL print_domain_groups(const char *domain) +static bool print_domain_groups(const char *domain) { struct winbindd_request request; struct winbindd_response response; @@ -1146,7 +1146,7 @@ static BOOL print_domain_groups(const char *domain) /* Set the authorised user for winbindd access in secrets.tdb */ -static BOOL wbinfo_set_auth_user(char *username) +static bool wbinfo_set_auth_user(char *username) { const char *password; char *p; @@ -1236,7 +1236,7 @@ static void wbinfo_get_auth_user(void) SAFE_FREE(password); } -static BOOL wbinfo_ping(void) +static bool wbinfo_ping(void) { NSS_STATUS result; @@ -1519,7 +1519,7 @@ int main(int argc, char **argv, char **envp) } break; case 'a': { - BOOL got_error = False; + bool got_error = False; if (!wbinfo_auth(string_arg)) { d_fprintf(stderr, "Could not authenticate user %s with " diff --git a/source3/nsswitch/wins.c b/source3/nsswitch/wins.c index 9502a5d17e..38bf3259f4 100644 --- a/source3/nsswitch/wins.c +++ b/source3/nsswitch/wins.c @@ -31,7 +31,7 @@ static int initialised; -extern BOOL AllowDebugChange; +extern bool AllowDebugChange; NSS_STATUS _nss_wins_gethostbyname_r(const char *hostname, struct hostent *he, char *buffer, size_t buflen, int *h_errnop); @@ -175,7 +175,7 @@ int lookup(nsd_file_t *rq) NODE_STATUS_STRUCT *status; int i, count, len, size; char response[1024]; - BOOL found = False; + bool found = False; nsd_logprintf(NSD_LOG_MIN, "entering lookup (wins)\n"); if (! rq) |