From 566e1b1f656f29e05e8720e3feffe7373240f7c6 Mon Sep 17 00:00:00 2001 From: Dirk Date: Fri, 29 May 2026 10:33:03 +0200 Subject: [PATCH] Fix diff complaint raised by ./t/12_diff_opensslversions.t --- testssl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testssl.sh b/testssl.sh index 7755844..be6a3cc 100755 --- a/testssl.sh +++ b/testssl.sh @@ -5451,13 +5451,13 @@ run_client_simulation() { [[ -n "$curve" ]] && curve="($curve)" if [[ "$what_dh" =~ MLKEM ]] || [[ "$what_dh" =~ Kyber ]]; then pr_kem_quality "$bits" "$(printf -- "%-12s" "$what_dh")" - appendfile+="$what_dh" + appendfile+="$(printf -- "%-12s" "$what_dh")" elif [[ "$what_dh" == ECDH ]]; then pr_ecdh_quality "$bits" "$(printf -- "%-12s" "$bits bit $what_dh") $curve" - appendfile+="$what_dh $bits $curve" + appendfile+="$(printf -- "%-12s" "$bits bit $what_dh") $curve" else pr_dh_quality "$bits" "$(printf -- "%-12s" "$bits bit $what_dh") $curve" - appendfile+="$what_dh $bits $curve" + appendfile+="$(printf -- "%-12s" "$bits bit $what_dh") $curve" fi else if "$HAS_DH_BITS" || { "$using_sockets" && [[ -n "${handshakebytes[i]}" ]]; }; then