diff options
author | Stefan Metzmacher <metze@samba.org> | 2020-02-24 14:15:09 +0100 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-10-15 23:58:14 -0500 |
commit | 330857a5d8224fa073bcb88d78e5be51f0848a75 (patch) | |
tree | d9bf56f089545ce13a5d9d4fa9700a19a96fe363 | |
parent | 682955491a0d89ed7993d7b7f5051c858634ee70 (diff) | |
download | linux-stable-330857a5d8224fa073bcb88d78e5be51f0848a75.tar.gz linux-stable-330857a5d8224fa073bcb88d78e5be51f0848a75.tar.bz2 linux-stable-330857a5d8224fa073bcb88d78e5be51f0848a75.zip |
cifs: map STATUS_ACCOUNT_LOCKED_OUT to -EACCES
This is basically the same as STATUS_LOGON_FAILURE,
but after the account is locked out.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r-- | fs/cifs/smb2maperror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2maperror.c b/fs/cifs/smb2maperror.c index b004cf87692a..c775682ee973 100644 --- a/fs/cifs/smb2maperror.c +++ b/fs/cifs/smb2maperror.c @@ -814,7 +814,7 @@ static const struct status_to_posix_error smb2_error_map_table[] = { {STATUS_INVALID_VARIANT, -EIO, "STATUS_INVALID_VARIANT"}, {STATUS_DOMAIN_CONTROLLER_NOT_FOUND, -EIO, "STATUS_DOMAIN_CONTROLLER_NOT_FOUND"}, - {STATUS_ACCOUNT_LOCKED_OUT, -EIO, "STATUS_ACCOUNT_LOCKED_OUT"}, + {STATUS_ACCOUNT_LOCKED_OUT, -EACCES, "STATUS_ACCOUNT_LOCKED_OUT"}, {STATUS_HANDLE_NOT_CLOSABLE, -EIO, "STATUS_HANDLE_NOT_CLOSABLE"}, {STATUS_CONNECTION_REFUSED, -EIO, "STATUS_CONNECTION_REFUSED"}, {STATUS_GRACEFUL_DISCONNECT, -EIO, "STATUS_GRACEFUL_DISCONNECT"}, |