]> git.proxmox.com Git - pve-storage.git/commitdiff
fixup error message typo: s/sould/should/
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 8 May 2018 07:34:34 +0000 (09:34 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 8 May 2018 07:34:37 +0000 (09:34 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/Storage/ZFSPoolPlugin.pm

index 7abf3c65ae5b993f83df67ec322d490f26790912..fd63d947047a21f78d4ae437b88bddc84cafa63e 100644 (file)
@@ -203,7 +203,7 @@ sub alloc_image {
     
     if ($fmt eq 'raw') {
 
-       die "illegal name '$volname' - sould be 'vm-$vmid-*'\n"
+       die "illegal name '$volname' - should be 'vm-$vmid-*'\n"
            if $volname && $volname !~ m/^vm-$vmid-/;
        $volname = $class->zfs_find_free_diskname($storeid, $scfg, $vmid, $fmt) 
            if !$volname;
@@ -221,12 +221,12 @@ sub alloc_image {
        }
     } elsif ( $fmt eq 'subvol') {
 
-       die "illegal name '$volname' - sould be 'subvol-$vmid-*'\n"
+       die "illegal name '$volname' - should be 'subvol-$vmid-*'\n"
            if $volname && $volname !~ m/^subvol-$vmid-/;
        $volname = $class->zfs_find_free_diskname($storeid, $scfg, $vmid, $fmt) 
            if !$volname;
 
-       die "illegal name '$volname' - sould be 'subvol-$vmid-*'\n"
+       die "illegal name '$volname' - should be 'subvol-$vmid-*'\n"
            if $volname !~ m/^subvol-$vmid-/;
 
        $class->zfs_create_subvol($scfg, $volname, $size);