revert fipslink.pl unlink retry change OpenSSL-fips-2_0 OpenSSL-fips-2_0-rc9
authorDr. Stephen Henson <steve@openssl.org>
Wed, 18 Jan 2012 15:07:11 +0000 (15:07 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Wed, 18 Jan 2012 15:07:11 +0000 (15:07 +0000)
fips/fips_locl.h
util/fipslink.pl

index b3618a57dec02d11a02135780f2acbeda0e7347e..6efa93194e77922003107273528333fcb3cbfa88 100644 (file)
@@ -67,8 +67,8 @@ int fips_post_failed(int id, int subid, void *ex);
 int fips_post_corrupt(int id, int subid, void *ex);
 int fips_post_status(void);
 
-#define FIPS_MODULE_VERSION_NUMBER     0x20000008L
-#define FIPS_MODULE_VERSION_TEXT       "FIPS 2.0-rc8 unvalidated test module xx XXX xxxx"
+#define FIPS_MODULE_VERSION_NUMBER     0x20000009L
+#define FIPS_MODULE_VERSION_TEXT       "FIPS 2.0-rc9 unvalidated test module xx XXX xxxx"
 
 #ifdef  __cplusplus
 }
index fd8b52ea0d5860304a6b775c113ca0c4026fd861..4f47efa39ce52c6753e8fea778ee19e61129c71c 100644 (file)
@@ -57,16 +57,6 @@ print "$fips_cc -DHMAC_SHA1_SIG=\\\"$fips_hash\\\" $fips_cc_args $fips_libdir/fi
 system "$fips_cc -DHMAC_SHA1_SIG=\\\"$fips_hash\\\" $fips_cc_args $fips_libdir/fips_premain.c";
 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($fips_target))
-        {
-        sleep 2;
-        die "Can't delete $fips_target" if ($delcnt++ > 10);
-        }
-
-
 print "$fips_link @ARGV\n";
 system "$fips_link @ARGV";
 die "Second stage Link failure" if $? != 0;