]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Always use the openssl binary configure tells us.
authorDarren Tucker <dtucker@dtucker.net>
Mon, 20 Feb 2023 07:24:39 +0000 (18:24 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Mon, 20 Feb 2023 09:01:29 +0000 (20:01 +1100)
This fixes tests on platforms that do not have the openssl tool
installed at all.

regress/test-exec.sh

index df43f021404f567acacca18de0acfb8a435d195d..325393ce9927e090e12d7373772f171c86d246ea 100644 (file)
@@ -102,7 +102,8 @@ CONCH=conch
 
 # Tools used by multiple tests
 NC=$OBJ/netcat
-OPENSSL_BIN="${OPENSSL_BIN:-openssl}"
+# Always use the one configure tells us to, even if that's empty.
+#OPENSSL_BIN="${OPENSSL_BIN:-openssl}"
 
 if [ "x$TEST_SSH_SSH" != "x" ]; then
        SSH="${TEST_SSH_SSH}"