diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-01-17 01:05:34 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-01-17 01:05:34 +0000 |
commit | ab3cae976800edd206d6c5b88bb4bd40b133f970 (patch) | |
tree | 6bb6836535046e66444502beaf6d33fb80a267fd /source3/libsmb/errormap.c | |
parent | 630e0ae8ef14e8ec75ea4d38f88453084780bf56 (diff) | |
download | samba-ab3cae976800edd206d6c5b88bb4bd40b133f970.tar.gz |
fixed a typo in the error map for WRONG_PASSWORD
(This used to be commit fb300e411bb385dcba2c3ca166598a71ed693b35)
Diffstat (limited to 'source3/libsmb/errormap.c')
-rw-r--r-- | source3/libsmb/errormap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/errormap.c b/source3/libsmb/errormap.c index 401a07b77dd..28b4cb04316 100644 --- a/source3/libsmb/errormap.c +++ b/source3/libsmb/errormap.c @@ -175,7 +175,7 @@ static struct { from NT_STATUS_WRONG_PASSWORD to NT_STATUS_LOGON_FAILURE during the session setup } */ - {ERRDOS, ERRbadpw, NT_STATUS_WRONG_PASSWORD}, + {ERRSRV, ERRbadpw, NT_STATUS_WRONG_PASSWORD}, {ERRHRD, ERRgeneral, NT_STATUS_ILL_FORMED_PASSWORD}, {ERRHRD, ERRgeneral, NT_STATUS_PASSWORD_RESTRICTION}, {ERRDOS, ERRnoaccess, NT_STATUS_LOGON_FAILURE}, |