From 6035a5dfb1a2db98c2f15115ab2ac362535ae586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Fri, 23 Apr 2021 12:23:18 +0200 Subject: [PATCH] api: fix typo in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- PVE/API2/Storage/Content.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Storage/Content.pm b/PVE/API2/Storage/Content.pm index c391b35..8b0e3de 100644 --- a/PVE/API2/Storage/Content.pm +++ b/PVE/API2/Storage/Content.pm @@ -230,7 +230,7 @@ my $real_volume_id = sub { if ($volume =~ m/:/) { eval { my ($sid, $volname) = PVE::Storage::parse_volume_id ($volume); - die "storage ID missmatch ($sid != $storeid)\n" + die "storage ID mismatch ($sid != $storeid)\n" if $storeid && $sid ne $storeid; $volid = $volume; $storeid = $sid;