From 03aea8fc9001495d47481d988e5f4823ee4e4827 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 1 Jan 2002 05:51:03 +0000 Subject: Allow usernames in the form of 'NT_STATUS_....' to map to that as the error when using the 'name_to_ntstatus' auth module. This could be useful in testing. Andrew Bartlett (This used to be commit 5cdc67d0bda8ef41305cae9c5be70d11593ffdd8) --- source3/auth/auth_builtin.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source3/auth/auth_builtin.c b/source3/auth/auth_builtin.c index b5bb673e2c..f76987f685 100644 --- a/source3/auth/auth_builtin.c +++ b/source3/auth/auth_builtin.c @@ -83,6 +83,12 @@ static NTSTATUS check_name_to_ntstatus_security(void *my_private_data, fstring user; long error_num; fstrcpy(user, user_info->smb_name.str); + + if (strncasecmp("NT_STATUS", user, strlen("NT_STATUS")) == 0) { + strupper(user); + return nt_status_string_to_code(user); + } + strlower(user); error_num = strtoul(user, NULL, 16); -- cgit