Fix wrong equals

This commit is contained in:
Jamie Cameron
2011-06-18 15:33:51 -07:00
parent a51517a234
commit 0c590fb85a

View File

@@ -72,7 +72,7 @@ else {
$status{'end'} = time();
&write_file($sfile, \%status);
if ($status{'status'} = 'complete') {
if ($status{'status'} eq 'complete') {
# Execute the post-backup script
$bok = &execute_after($dump, OUT, 0);
if (!$bok && !$dump->{'afterfok'}) {