From 5e0144f2ef1b624cdc5637612c8d11225419b234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 6 Jun 2017 19:35:34 +0200 Subject: [PATCH] Fix bug in backport from SHA-1 blacklisting --- tests/compat.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/compat.sh b/tests/compat.sh index 8b33890cd..6d795201f 100755 --- a/tests/compat.sh +++ b/tests/compat.sh @@ -818,8 +818,8 @@ setup_arguments() # Allow SHA-1. It's disabled by default for security reasons but # our tests still use certificates signed with it. - M_SERVER_ARGS="$M_SERVER_ARGS allow_sha1=1" - M_CLIENT_ARGS="$M_CLIENT_ARGS allow_sha1=1" + P_SERVER_ARGS="$P_SERVER_ARGS allow_sha1=1" + P_CLIENT_ARGS="$P_CLIENT_ARGS allow_sha1=1" ;; "PSK") @@ -835,8 +835,8 @@ setup_arguments() # Allow SHA-1. It's disabled by default for security reasons but # our tests still use certificates signed with it. - M_SERVER_ARGS="$M_SERVER_ARGS allow_sha1=1" - M_CLIENT_ARGS="$M_CLIENT_ARGS allow_sha1=1" + P_SERVER_ARGS="$P_SERVER_ARGS allow_sha1=1" + P_CLIENT_ARGS="$P_CLIENT_ARGS allow_sha1=1" ;; esac }