From 9fff8c7aca43d2c416ef78c5a9ce9ec4b6b07ecd Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 14 Sep 2021 14:28:04 +0200 Subject: [PATCH] cifs: allow "3" and "default" for version Signed-off-by: Thomas Lamprecht --- PVE/Storage/CIFSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/CIFSPlugin.pm b/PVE/Storage/CIFSPlugin.pm index 74e7912..565fb78 100644 --- a/PVE/Storage/CIFSPlugin.pm +++ b/PVE/Storage/CIFSPlugin.pm @@ -117,7 +117,7 @@ sub properties { smbversion => { description => "SMB protocol version", type => 'string', - enum => ['2.0', '2.1', '3.0', '3.11'], + enum => ['default', '2.0', '2.1', '3', '3.0', '3.11'], optional => 1, }, };