fix uninitialized value warning in debug mode on initial run (no snapshots yet)

This commit is contained in:
Christoph Klaffl 2018-09-05 19:18:21 +02:00
parent 22160deb8e
commit 4af2948382
No known key found for this signature in database
GPG Key ID: FC1C525C2A47CC28
1 changed files with 13 additions and 9 deletions

4
sanoid
View File

@ -492,6 +492,9 @@ sub blabber {
my $path = $config{$section}{'path'}; my $path = $config{$section}{'path'};
print "Filesystem $path has:\n"; print "Filesystem $path has:\n";
print " $snapsbypath{$path}{'numsnaps'} total snapshots "; print " $snapsbypath{$path}{'numsnaps'} total snapshots ";
if ($snapsbypath{$path}{'numsnaps'} == 0) {
print "(no current snapshots)"
} else {
print "(newest: "; print "(newest: ";
my $newest = sprintf("%.1f",$snapsbypath{$path}{'newest'} / 60 / 60); my $newest = sprintf("%.1f",$snapsbypath{$path}{'newest'} / 60 / 60);
print "$newest hours old)\n"; print "$newest hours old)\n";
@ -503,6 +506,7 @@ sub blabber {
my $newest = sprintf("%.1f",($snapsbytype{$path}{$type}{'newest'} / 60 / 60)); my $newest = sprintf("%.1f",($snapsbytype{$path}{$type}{'newest'} / 60 / 60));
print "$newest hours old, named $snapsbytype{$path}{$type}{'newestname'}\n"; print "$newest hours old, named $snapsbytype{$path}{$type}{'newestname'}\n";
} }
}
print "\n\n"; print "\n\n";
} }