diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-07-02 17:57:35 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-07-02 17:57:35 +0200 |
commit | eca7358be3a7935f1ff3432f1aaad842636fc82d (patch) | |
tree | d110323b0a9b299ca7492485971f43ab54edf4b7 | |
parent | sha1-x86_64.pl: fix win64-specific typos and add masm support. (diff) | |
download | openssl-eca7358be3a7935f1ff3432f1aaad842636fc82d.tar.xz openssl-eca7358be3a7935f1ff3432f1aaad842636fc82d.zip |
Additional error checking.
-rw-r--r-- | ms/do_fips.bat | 2 | ||||
-rw-r--r-- | util/fipsas.pl | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ms/do_fips.bat b/ms/do_fips.bat index a78fc2515d..3b0d2aa7ff 100644 --- a/ms/do_fips.bat +++ b/ms/do_fips.bat @@ -56,7 +56,9 @@ perl util\mk1mf.pl dll %ASM% %TARGET% >ms\ntdll.mak @if ERRORLEVEL 1 goto error nmake -f ms\ntdll.mak clean +@if ERRORLEVEL 1 goto error nmake -f ms\ntdll.mak +@if ERRORLEVEL 1 goto error nmake -f ms\ntdll.mak install @if ERRORLEVEL 1 goto error diff --git a/util/fipsas.pl b/util/fipsas.pl index 6e10d7d8d5..fc2a759308 100644 --- a/util/fipsas.pl +++ b/util/fipsas.pl @@ -49,11 +49,11 @@ while (<IN>) my ($from, $to); #rename target temporarily -rename($target, "tmptarg.s") || die "Can't rename $target\n"; +rename($target, "tmptarg.s") || die "Can't rename $target"; #edit target -open IN,"tmptarg.s"; -open OUT, ">$target"; +open(IN,"tmptarg.s") || die "Can't open temporary file"; +open(OUT, ">$target") || die "Can't open output file $target"; while (<IN>) { |