Fix for the bugfix in r24.

This commit is contained in:
Major Hayden 2008-01-15 01:38:47 +00:00
parent c56383201c
commit 9ccae41ead

View file

@ -255,7 +255,7 @@ sub check_storage_engines {
$line =~ /([a-zA-Z_]*)\s*(.*)/; $line =~ /([a-zA-Z_]*)\s*(.*)/;
my $engine = $1; my $engine = $1;
my $size = $2; my $size = $2;
if ($size =~ /^\d+$/) { if ($size !~ /^\d+$/) {
$size = 0; $size = 0;
} }
if (defined $enginestats{$engine}) { if (defined $enginestats{$engine}) {