summaryrefslogtreecommitdiff
path: root/source3/auth/auth_util.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-07-19 20:15:45 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-07-20 02:31:15 +0200
commitd8cce7d466b1fb122136a464e978f71483ab0e09 (patch)
treeaef4eaf109d33cc7d8ab36eaa4150f363e27c2ff /source3/auth/auth_util.c
parentc2ce806790c7b1089a8af9a8f8fe87a74c432091 (diff)
downloadsamba-d8cce7d466b1fb122136a464e978f71483ab0e09.tar.gz
samba-d8cce7d466b1fb122136a464e978f71483ab0e09.tar.bz2
samba-d8cce7d466b1fb122136a464e978f71483ab0e09.zip
s3-auth Replace False with false in auth_util.c
Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Jul 20 02:31:15 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/auth/auth_util.c')
-rw-r--r--source3/auth/auth_util.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index 036cb1c7d1..2689afd7d1 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -185,7 +185,7 @@ bool make_user_info_netlogon_network(struct auth_usersupplied_info **user_info,
if (NT_STATUS_IS_OK(status)) {
(*user_info)->logon_parameters = logon_parameters;
}
- ret = NT_STATUS_IS_OK(status) ? true : False;
+ ret = NT_STATUS_IS_OK(status) ? true : false;
data_blob_free(&lm_blob);
data_blob_free(&nt_blob);
@@ -288,7 +288,7 @@ bool make_user_info_netlogon_interactive(struct auth_usersupplied_info **user_in
(*user_info)->logon_parameters = logon_parameters;
}
- ret = NT_STATUS_IS_OK(nt_status) ? true : False;
+ ret = NT_STATUS_IS_OK(nt_status) ? true : false;
data_blob_free(&local_lm_blob);
data_blob_free(&local_nt_blob);
return ret;
@@ -344,7 +344,7 @@ bool make_user_info_for_reply(struct auth_usersupplied_info **user_info,
(const char *)plaintext_password.data,
plaintext_password.length);
if (!plaintext_password_string) {
- return False;
+ return false;
}
ret = make_user_info_map(
@@ -363,7 +363,7 @@ bool make_user_info_for_reply(struct auth_usersupplied_info **user_info,
}
data_blob_free(&local_lm_blob);
- return NT_STATUS_IS_OK(ret) ? true : False;
+ return NT_STATUS_IS_OK(ret) ? true : false;
}
/****************************************************************************
@@ -405,7 +405,7 @@ bool make_user_info_guest(const struct tsocket_address *remote_address,
NULL,
AUTH_PASSWORD_RESPONSE);
- return NT_STATUS_IS_OK(nt_status) ? true : False;
+ return NT_STATUS_IS_OK(nt_status) ? true : false;
}
static NTSTATUS log_nt_token(struct security_token *token)
@@ -1166,13 +1166,13 @@ bool copy_current_user(struct current_user *dst, struct current_user *src)
groups = (gid_t *)memdup(src->ut.groups,
sizeof(gid_t) * src->ut.ngroups);
if ((src->ut.ngroups != 0) && (groups == NULL)) {
- return False;
+ return false;
}
nt_token = dup_nt_token(NULL, src->nt_user_token);
if (nt_token == NULL) {
SAFE_FREE(groups);
- return False;
+ return false;
}
dst->conn = src->conn;
@@ -1522,7 +1522,7 @@ bool is_trusted_domain(const char* dom_name)
/* no trusted domains for a standalone server */
if ( lp_server_role() == ROLE_STANDALONE )
- return False;
+ return false;
if (dom_name == NULL || dom_name[0] == '\0') {
return false;
@@ -1556,7 +1556,7 @@ bool is_trusted_domain(const char* dom_name)
if (result == WBC_ERR_DOMAIN_NOT_FOUND) {
/* winbind could not find the domain */
- return False;
+ return false;
}
/* The only other possible result is that winbind is not up
@@ -1574,6 +1574,6 @@ bool is_trusted_domain(const char* dom_name)
return true;
}
- return False;
+ return false;
}