Remove unnecessary temporary

This commit is contained in:
tiedotguy 2019-11-02 22:35:58 +11:00
parent d51c8ab2c8
commit e01dceaee3
1 changed files with 1 additions and 2 deletions

3
sanoid
View File

@ -527,8 +527,7 @@ sub take_snapshots {
my $snapname = $snapData->{snapshot};
my $recursiveFlag = $snapData->{recursive};
my $dstHandling = $snapData->{handleDst};
my $f = $snapData->{batch};
my $batch = join(",", @$f);
my $batch = join(",", @{$snapData->{batch}});
my $extraMessage = "";
if ($recursiveFlag) {
$extraMessage = " (zfs recursive)";