1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r2513: Avoid strupper/strlower when you can. This developers module

certainly doesn't need it.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2004-09-22 12:14:44 +00:00 committed by Gerald (Jerry) Carter
parent f543de80b1
commit 77d7c76c9b

View File

@ -89,14 +89,12 @@ static NTSTATUS check_name_to_ntstatus_security(const struct auth_context *auth_
fstrcpy(user, user_info->smb_name.str);
if (strncasecmp("NT_STATUS", user, strlen("NT_STATUS")) == 0) {
strupper_m(user);
return nt_status_string_to_code(user);
}
strlower_m(user);
error_num = strtoul(user, NULL, 16);
DEBUG(5,("check_name_to_ntstatus_security: Error for user %s was %lx\n", user, error_num));
DEBUG(5,("check_name_to_ntstatus_security: Error for user %s was 0x%lx\n", user, error_num));
nt_status = NT_STATUS(error_num);