Long line fixes

This commit is contained in:
Jamie Cameron
2011-03-27 18:46:03 -07:00
parent 971c99edf0
commit c0a31c3bd0

View File

@@ -107,7 +107,8 @@ if (!$in{'save'}) {
# Run and check before-backup command (for all DBs)
$bok = &execute_before(undef, STDOUT, 1, $in{'file'}, undef);
if (!$bok) {
print "$main::whatfailed : ",$text{'backup_ebefore'},"<p>\n";
print "$main::whatfailed : ",
$text{'backup_ebefore'},"<p>\n";
goto donebackup;
}
}
@@ -124,9 +125,11 @@ if (!$in{'save'}) {
}
if ($cron && $cmode == 0) {
# Run and check before-backup command (for one DB)
$bok = &execute_before($db, STDOUT, 1, $file, $in{'all'} ? undef : $db);
$bok = &execute_before($db, STDOUT, 1, $file,
$in{'all'} ? undef : $db);
if (!$bok) {
print "$main::whatfailed : ",$text{'backup_ebefore'},"<p>\n";
print "$main::whatfailed : ",
$text{'backup_ebefore'},"<p>\n";
next;
}
}