]> git.proxmox.com Git - pve-storage.git/commitdiff
api: fix typo in error message
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Fri, 23 Apr 2021 10:23:18 +0000 (12:23 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Fri, 23 Apr 2021 10:29:36 +0000 (12:29 +0200)
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
PVE/API2/Storage/Content.pm

index c391b357e9aa53262665b3ed6259339152881c01..8b0e3dee489c5c99cf42b29a210a3f05c22d9ae7 100644 (file)
@@ -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;