diff options
| author | ChenXiaoSong <chenxiaosong@kylinos.cn> | 2026-01-22 13:24:02 +0800 |
|---|---|---|
| committer | Steve French <stfrench@microsoft.com> | 2026-02-12 14:22:29 -0600 |
| commit | 3774289f525cba0f33610a390bd6a28bb636b637 (patch) | |
| tree | 7a3fbc695de70f42d13ff468993c46bed801e840 /fs | |
| parent | 617a5d2473dc043dcd7f2b84b28ce7a9f8a06587 (diff) | |
smb/client: move NT_STATUS_MORE_ENTRIES
It is an NTSTATUS value, not a Win32 error code.
Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/smb/client/nterr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/smb/client/nterr.h b/fs/smb/client/nterr.h index 03d120e2ce09..9a4a450c6571 100644 --- a/fs/smb/client/nterr.h +++ b/fs/smb/client/nterr.h @@ -22,19 +22,19 @@ struct nt_err_code_struct { extern const struct nt_err_code_struct nt_errs[]; -/* Win32 Status codes. */ -#define NT_STATUS_MORE_ENTRIES 0x0105 +/* Win32 Error Codes. */ #define NT_ERROR_INVALID_PARAMETER 0x0057 #define NT_ERROR_INSUFFICIENT_BUFFER 0x007a #define NT_ERROR_INVALID_DATATYPE 0x070c /* - * Win32 Error codes extracted using a loop in smbclient then printing a netmon + * NTSTATUS Values extracted using a loop in smbclient then printing a netmon * sniff to a file. */ #define NT_STATUS_OK 0x0000 #define NT_STATUS_PENDING 0x0103 +#define NT_STATUS_MORE_ENTRIES 0x0105 #define NT_STATUS_SOME_NOT_MAPPED 0x0107 #define NT_STATUS_NOTIFY_ENUM_DIR 0x010c #define NT_STATUS_BUFFER_OVERFLOW 0x80000005 |
