1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Removed commented code

This commit is contained in:
David Steele 2014-01-10 00:22:51 -05:00
parent b5f965942b
commit 8e966c50dd

View File

@ -583,11 +583,8 @@ sub backup
if (!$bNoCompression && $iSize != 0)
{
#unless (-e $strLinkSource)
#{
$strLinkSource .= ".gz";
$strLinkDestination .= ".gz";
#}
$strLinkSource .= ".gz";
$strLinkDestination .= ".gz";
}
if (-e $strLinkDestination)
@ -595,10 +592,7 @@ sub backup
unlink $strLinkDestination or die "Unable to unlink ${$strLinkDestination}";
}
#unless (-e $strLinkDestination)
#{
execute("ln ${strLinkSource} ${strLinkDestination}");
#}
execute("ln ${strLinkSource} ${strLinkDestination}");
}
next;