summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-01-03 19:43:06 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-01-03 19:43:06 +0000
commit24fadf2a20f50d5623f61f2cc08f95c22b5ba75c (patch)
treef6c0dd878f906f9add2fd400be48fcf6a70d3192
parent409abd2fecba4431486de57afc7b5d6b662ab8e0 (diff)
-rw-r--r--util/fipslink.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/fipslink.pl b/util/fipslink.pl
index 262d691d1b..fd8b52ea0d 100644
--- a/util/fipslink.pl
+++ b/util/fipslink.pl
@@ -60,10 +60,10 @@ die "Second stage Compile failure" if $? != 0;
my $delcnt = 0;
# On windows the previous file doesn't always close straight away
# so retry an unlink operation a few times if it fails.
-while (!unlink($target))
+while (!unlink($fips_target))
{
sleep 2;
- die "Can't delete $target" if ($delcnt++ > 10);
+ die "Can't delete $fips_target" if ($delcnt++ > 10);
}