]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
libcli/smb: remove unused PROTOCOL_SMB3_10 definition
authorStefan Metzmacher <metze@samba.org>
Fri, 9 Jul 2021 10:04:30 +0000 (12:04 +0200)
committerStefan Metzmacher <metze@samba.org>
Thu, 15 Jul 2021 00:06:31 +0000 (00:06 +0000)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
libcli/smb/smb_constants.h
libcli/smb/util.c

index a5cd73106b646dc3155ffcd24b3a656d09eb1889..e58e5f35f25fe4518e4b7e6be37faa5a2c082a41 100644 (file)
@@ -90,7 +90,6 @@ enum protocol_types {
        PROTOCOL_SMB2_10,
        PROTOCOL_SMB3_00,
        PROTOCOL_SMB3_02,
-       PROTOCOL_SMB3_10,
        PROTOCOL_SMB3_11
 };
 #define PROTOCOL_LATEST PROTOCOL_SMB3_11
index 66251bc8d5a30a570e8972c8deda8927ec915cfd..6d35c244a32c49cc89ffa6f869342146f5a69b54 100644 (file)
@@ -49,8 +49,6 @@ const char *smb_protocol_types_string(enum protocol_types protocol)
                return "SMB3_00";
        case PROTOCOL_SMB3_02:
                return "SMB3_02";
-       case PROTOCOL_SMB3_10:
-               return "SMB3_10";
        case PROTOCOL_SMB3_11:
                return "SMB3_11";
        }