From 27cc55d4fb94b1ef901ca4621e3a376d34e97c6d Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 7 Sep 2012 12:59:26 +0200 Subject: [PATCH] fix typo --- PVE/Storage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 2dfd561..271b3f9 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -175,7 +175,7 @@ sub volume_snapshot_delete { if ($storeid) { my $scfg = storage_config($cfg, $storeid); my $plugin = PVE::Storage::Plugin->lookup($scfg->{type}); - return $plugin->volume_snapshot_rollback_delete($scfg, $storeid, $volname, $snap, $running); + return $plugin->volume_snapshot_delete($scfg, $storeid, $volname, $snap, $running); } elsif ($volid =~ m|^(/.+)$| && -e $volid) { die "snapshot delete device is not possible"; } else {