summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-06-08 21:59:54 +0000
committerRichard Levitte <levitte@openssl.org>2005-06-08 21:59:54 +0000
commit004f16f6c4c047bef413caff07e197d895a4f9f0 (patch)
tree30ba8a75a204ed356f50ce949bc8647bc716b86e /test
parent4e2a0e58f238a5706d971ea1e467242bf94e3f2c (diff)
Avoid endless loops. Really, we were using the same variable for two
different conditions...
Diffstat (limited to 'test')
-rw-r--r--test/tverify.com14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/tverify.com b/test/tverify.com
index 2060184d1e..021d701d79 100644
--- a/test/tverify.com
+++ b/test/tverify.com
@@ -8,22 +8,22 @@ $ copy/concatenate [-.certs]*.pem certs.tmp
$
$ old_f :=
$ loop_certs:
-$ c := NO
+$ verify := NO
+$ more := YES
$ certs :=
$ loop_certs2:
$ f = f$search("[-.certs]*.pem")
$ if f .nes. "" .and. f .nes. old_f
$ then
$ certs = certs + " [-.certs]" + f$parse(f,,,"NAME") + ".pem"
-$ c := YES
+$ verify := YES
$ if f$length(certs) .lt. 180 then goto loop_certs2
+$ else
+$ more := NO
$ endif
$ certs = certs - " "
$
-$ if c
-$ then
-$ mcr 'exe_dir'openssl verify "-CAfile" certs.tmp 'certs'
-$ goto loop_certs
-$ endif
+$ if verify then mcr 'exe_dir'openssl verify "-CAfile" certs.tmp 'certs'
+$ if more then goto loop_certs
$
$ delete certs.tmp;*