Commit dd0ac2d2 authored by Steve French's avatar Steve French

smb2: fix typo in definition of a few error flags

As Sergey Senozhatsky pointed out __constant_cpu_to_le32()
is misspelled in a few definitions in the list of status
codes smb2status.h as __constanst_cpu_to_le32()
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
CC: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
parent c847dccf
...@@ -30,9 +30,9 @@ ...@@ -30,9 +30,9 @@
*/ */
#define STATUS_SEVERITY_SUCCESS __constant_cpu_to_le32(0x0000) #define STATUS_SEVERITY_SUCCESS __constant_cpu_to_le32(0x0000)
#define STATUS_SEVERITY_INFORMATIONAL __constanst_cpu_to_le32(0x0001) #define STATUS_SEVERITY_INFORMATIONAL cpu_to_le32(0x0001)
#define STATUS_SEVERITY_WARNING __constanst_cpu_to_le32(0x0002) #define STATUS_SEVERITY_WARNING cpu_to_le32(0x0002)
#define STATUS_SEVERITY_ERROR __constanst_cpu_to_le32(0x0003) #define STATUS_SEVERITY_ERROR cpu_to_le32(0x0003)
struct ntstatus { struct ntstatus {
/* Facility is the high 12 bits of the following field */ /* Facility is the high 12 bits of the following field */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment