From cde9a48dfb8d4b5d6394f975ddd519c6c581ef39 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 22 Sep 2004 12:14:44 +0000 Subject: r2513: Avoid strupper/strlower when you can. This developers module certainly doesn't need it. Andrew Bartlett (This used to be commit 77d7c76c9bc7a4fa109056140a5f4107b4410838) --- source4/auth/auth_builtin.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/auth_builtin.c b/source4/auth/auth_builtin.c index 002f9f7190..aa5355059c 100644 --- a/source4/auth/auth_builtin.c +++ b/source4/auth/auth_builtin.c @@ -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); -- cgit