diff mbox series

[SMB3] Trivial typo fix

Message ID CAH2r5msh3RUvBEwf2henYJ-oVt=4PwBDePnu-EVSrTpOCWLyUw@mail.gmail.com
State New
Headers show
Series [SMB3] Trivial typo fix | expand

Commit Message

Steve French Sept. 8, 2023, 8:56 p.m. UTC
smb3: fix minor typo in SMB2_GLOBAL_CAP_LARGE_MTU

    There was a minor typo in the define for SMB2_GLOBAL_CAP_LARGE_MTU
          0X00000004 instead of 0x00000004
    make it consistent

    Signed-off-by: Steve French <stfrench@microsoft.com>

 #define SMB2_GLOBAL_CAP_DIRECTORY_LEASING  0x00000020 /* New to SMB3 */

Comments

Namjae Jeon Sept. 8, 2023, 11:48 p.m. UTC | #1
2023-09-09 5:56 GMT+09:00, Steve French <smfrench@gmail.com>:
>     smb3: fix minor typo in SMB2_GLOBAL_CAP_LARGE_MTU
>
>     There was a minor typo in the define for SMB2_GLOBAL_CAP_LARGE_MTU
>           0X00000004 instead of 0x00000004
>     make it consistent
>
>     Signed-off-by: Steve French <stfrench@microsoft.com>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>

Thanks!
diff mbox series

Patch

From e0188d42a72c12aa1bcbc41b0b90bab78a7bb5d0 Mon Sep 17 00:00:00 2001
From: Steve French <stfrench@microsoft.com>
Date: Fri, 8 Sep 2023 15:48:57 -0500
Subject: [PATCH] smb3: fix minor typo in SMB2_GLOBAL_CAP_LARGE_MTU

There was a minor typo in the define for SMB2_GLOBAL_CAP_LARGE_MTU
      0X00000004 instead of 0x00000004
make it consistent

Signed-off-by: Steve French <stfrench@microsoft.com>
---
 fs/smb/common/smb2pdu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/smb/common/smb2pdu.h b/fs/smb/common/smb2pdu.h
index 2680251b9aac..319fb9ffc6a0 100644
--- a/fs/smb/common/smb2pdu.h
+++ b/fs/smb/common/smb2pdu.h
@@ -406,7 +406,7 @@  struct smb2_tree_disconnect_rsp {
 /* Capabilities flags */
 #define SMB2_GLOBAL_CAP_DFS		0x00000001
 #define SMB2_GLOBAL_CAP_LEASING		0x00000002 /* Resp only New to SMB2.1 */
-#define SMB2_GLOBAL_CAP_LARGE_MTU	0X00000004 /* Resp only New to SMB2.1 */
+#define SMB2_GLOBAL_CAP_LARGE_MTU	0x00000004 /* Resp only New to SMB2.1 */
 #define SMB2_GLOBAL_CAP_MULTI_CHANNEL	0x00000008 /* New to SMB3 */
 #define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */
 #define SMB2_GLOBAL_CAP_DIRECTORY_LEASING  0x00000020 /* New to SMB3 */
-- 
2.39.2