diff options
author | Steve French <stfrench@microsoft.com> | 2020-10-21 20:36:26 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-10-22 12:17:45 -0500 |
commit | 1af34fdd0799fed0b248fa2521ae9e2d69365742 (patch) | |
tree | ee482b62a7e4830af946e81a437dbdb70a5bbba9 /fs | |
parent | 555782aa556af869d4f390996607abd356513ba4 (diff) |
smb3.1.1: fix typo in compression flag
Fix minor typo in new compression flag define
Reported-by: Tom Talpey <tom@talpey.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/smb2pdu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h index 851c6cd4742a..171f54965703 100644 --- a/fs/cifs/smb2pdu.h +++ b/fs/cifs/smb2pdu.h @@ -154,7 +154,7 @@ struct smb2_compression_transform_hdr { /* See MS-SMB2 2.2.42.1 */ #define SMB2_COMPRESSION_FLAG_NONE 0x0000 -#define SMB2_COMPRESSION_FLAG_CHAINDED 0x0001 +#define SMB2_COMPRESSION_FLAG_CHAINED 0x0001 struct compression_payload_header { __le16 CompressionAlgorithm; |