From: Dr. Stephen Henson Date: Tue, 3 Jan 2012 19:43:06 +0000 (+0000) Subject: typo X-Git-Tag: OpenSSL-fips-2_0-rc8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=24fadf2a20f50d5623f61f2cc08f95c22b5ba75c;p=oweals%2Fopenssl.git typo --- 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); }