diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-01 05:51:03 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-01 05:51:03 +0000 |
commit | 5cdc67d0bda8ef41305cae9c5be70d11593ffdd8 (patch) | |
tree | 951e798b7a2a28cebca94bb7d5bc4219ea0d00d6 | |
parent | 6673fdda3cb6b90189d8f82274fdffa89f68101b (diff) | |
download | samba-5cdc67d0bda8ef41305cae9c5be70d11593ffdd8.tar.gz samba-5cdc67d0bda8ef41305cae9c5be70d11593ffdd8.tar.xz samba-5cdc67d0bda8ef41305cae9c5be70d11593ffdd8.zip |
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
-rw-r--r-- | source/auth/auth_builtin.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/auth/auth_builtin.c b/source/auth/auth_builtin.c index b5bb673e2cb..f76987f685d 100644 --- a/source/auth/auth_builtin.c +++ b/source/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); |