Skip to content

Commit b2b50fc

Browse files
ChenXiaoSongsmfrench
authored andcommitted
smb/client: fix NT_STATUS_DEVICE_DOOR_OPEN value
This was reported by the KUnit tests in the later patches. See MS-ERREF 2.3.1 STATUS_DEVICE_DOOR_OPEN. Keep it consistent with the value in the documentation. Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn> Acked-by: Paulo Alcantara (Red Hat) <pc@manguebit.org> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent a1237c2 commit b2b50fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/smb/client/nterr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extern const struct nt_err_code_struct nt_errs[];
4444
#define NT_STATUS_NO_DATA_DETECTED 0x80000022
4545
#define NT_STATUS_STOPPED_ON_SYMLINK 0x8000002d
4646
#define NT_STATUS_DEVICE_REQUIRES_CLEANING 0x80000288
47-
#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000288
47+
#define NT_STATUS_DEVICE_DOOR_OPEN 0x80000289
4848
#define NT_STATUS_UNSUCCESSFUL 0xC0000000 | 0x0001
4949
#define NT_STATUS_NOT_IMPLEMENTED 0xC0000000 | 0x0002
5050
#define NT_STATUS_INVALID_INFO_CLASS 0xC0000000 | 0x0003

0 commit comments

Comments
 (0)