Revision 8d507aee7c2d91aaa9b9142530d46d82f1a0139b authored by Emilia Kasper on 04 September 2014, 11:04:42 UTC, committed by Emilia Kasper on 24 September 2014, 13:52:41 UTC
(Original commit adb46dbc6dd7347750df2468c93e8c34bcb93a4b) Use the new constant-time methods consistently in s3_srvr.c Reviewed-by: Kurt Roeckx <kurt@openssl.org> (cherry picked from commit 455b65dfab0de51c9f67b3c909311770f2b3f801)
1 parent 1331456
clean_test.com
$!
$! Delete various test results files.
$!
$ def_orig = f$environment( "default")
$ proc = f$environment( "procedure")
$ proc_dev_dir = f$parse( "A.;", proc) - "A.;"
$!
$ on control_c then goto tidy
$ on error then goto tidy
$!
$ set default 'proc_dev_dir'
$!
$ files := *.cms;*, *.srl;*, *.ss;*, -
cms.err;*, cms.out;*, newreq.pem;*, -
p.txt-zlib-cipher;*, -
smtst.txt;*, testkey.pem;*, testreq.pem;*, -
test_*.err;*, test_*.out;*, -
.rnd;*
$!
$ delim = ","
$ i = 0
$ loop:
$ file = f$edit( f$element( i, delim, files), "trim")
$ if (file .eqs. delim) then goto loop_end
$ if (f$search( file) .nes. "") then -
delete 'p1' 'file'
$ i = i+ 1
$ goto loop
$ loop_end:
$!
$ tidy:
$
$ if (f$type( def_orig) .nes. "") then -
set default 'def_orig'
$!

Computing file changes ...