Commit c99eaf21 authored by Richard Levitte's avatar Richard Levitte Committed by Matt Caswell
Browse files

test_ssl_old: avoid empty strings for flags



Reviewed-by: default avatarPaul Dale <paul.dale@oracle.com>
Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5396)

(cherry picked from commit 62930b2e)
parent d615c80a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -476,7 +476,8 @@ sub testssl {
                    note "*****SKIPPING $protocol $cipher";
                    ok(1);
                } else {
                    ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])),
                    ok(run(test([@ssltest, @exkeys, "-cipher", $cipher,
                                 $flag || ()])),
                       "Testing $cipher");
               }
	    }