From 6ea1a3f3fe8d132743383a5b0d4bad350b1428b2 Mon Sep 17 00:00:00 2001 From: Alwin Antreich Date: Fri, 2 Mar 2018 12:03:47 +0100 Subject: [PATCH] Fix typo in sub s/krdb_feature_disable/krbd_feature_disable Signed-off-by: Alwin Antreich --- PVE/Storage/RBDPlugin.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PVE/Storage/RBDPlugin.pm b/PVE/Storage/RBDPlugin.pm index d2c9c1a..fd5a2ef 100644 --- a/PVE/Storage/RBDPlugin.pm +++ b/PVE/Storage/RBDPlugin.pm @@ -91,7 +91,7 @@ my $rados_cmd = sub { }; # needed for volumes created using ceph jewel (or higher) -my $krdb_feature_disable = sub { +my $krbd_feature_disable = sub { my ($scfg, $storeid, $name) = @_; return 1 if !$scfg->{krbd}; @@ -449,7 +449,7 @@ sub clone_image { run_rbd_command($cmd, errmsg => "rbd clone '$basename' error"); - &$krdb_feature_disable($scfg, $storeid, $name); + &$krbd_feature_disable($scfg, $storeid, $name); return $newvol; } @@ -466,7 +466,7 @@ sub alloc_image { my $cmd = &$rbd_cmd($scfg, $storeid, 'create', '--image-format' , 2, '--size', int(($size+1023)/1024), $name); run_rbd_command($cmd, errmsg => "rbd create $name' error"); - &$krdb_feature_disable($scfg, $storeid, $name); + &$krbd_feature_disable($scfg, $storeid, $name); return $name; }