[openssh-commits] [openssh] 02/03: Check for $OPENSSL in md5 fallback too.

git+noreply at mindrot.org git+noreply at mindrot.org
Wed Jun 2 15:59:53 AEST 2021


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit 5de0867b822ec48b5eec9abde0f5f95d1d646546
Author: Darren Tucker <dtucker at dtucker.net>
Date:   Wed Jun 2 11:21:40 2021 +1000

    Check for $OPENSSL in md5 fallback too.
---
 regress/test-exec.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 1bb6aa4a..5b52788e 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -327,6 +327,8 @@ md5 () {
 		cksum
 	elif have_prog sum; then
 		sum
+	elif [ -x ${OPENSSL} ]; then
+		${OPENSSL} md5
 	else
 		wc -c
 	fi

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list