1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00

cleaning up some friendly error messages

This commit is contained in:
Gerald Carter 0001-01-01 00:00:00 +00:00
parent 18799c115b
commit 0f963685d9

View File

@ -549,7 +549,7 @@ nt_err_code_struct nt_err_desc[] =
{ "Password is too recent", NT_STATUS_PWD_TOO_RECENT },
{ "Password history conflict", NT_STATUS_PWD_HISTORY_CONFLICT },
{ "No logon servers", NT_STATUS_NO_LOGON_SERVERS },
{ "Invalid account name", NT_STATUS_INVALID_ACCOUNT_NAME },
{ "Improperly formed account name", NT_STATUS_INVALID_ACCOUNT_NAME },
{ "User exists", NT_STATUS_USER_EXISTS },
{ "No such user", NT_STATUS_NO_SUCH_USER },
{ "Group exists", NT_STATUS_GROUP_EXISTS },
@ -559,11 +559,15 @@ nt_err_code_struct nt_err_desc[] =
{ "Ill formed password", NT_STATUS_ILL_FORMED_PASSWORD },
{ "Password restriction", NT_STATUS_PASSWORD_RESTRICTION },
{ "Logon failure", NT_STATUS_LOGON_FAILURE },
{ "Account restruction", NT_STATUS_ACCOUNT_RESTRICTION },
{ "Account restriction", NT_STATUS_ACCOUNT_RESTRICTION },
{ "Invalid logon hours", NT_STATUS_INVALID_LOGON_HOURS },
{ "Invalid workstation", NT_STATUS_INVALID_WORKSTATION },
{ "Password expired", NT_STATUS_PASSWORD_EXPIRED },
{ "Account Disabled", NT_STATUS_ACCOUNT_DISABLED },
{ "Account disabled", NT_STATUS_ACCOUNT_DISABLED },
{ "Unexpected information received", NT_STATUS_INVALID_PARAMETER },
{ "Memory allocation error", NT_STATUS_NO_MEMORY },
{ "No domain controllers located", NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND },
{ "Account locked out", NT_STATUS_ACCOUNT_LOCKED_OUT },
{ NULL, NT_STATUS(0) }
};