From: Darren Tucker Date: Thu, 12 Oct 2023 05:23:05 +0000 (+1100) Subject: Correct arg order for ED255519 AC_LINK_IFELSE test. X-Git-Tag: V_9_6_P1~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=971e0cfcfd52ef1d73cf5244074c306a60006e89;p=thirdparty%2Fopenssh-portable.git Correct arg order for ED255519 AC_LINK_IFELSE test. --- diff --git a/configure.ac b/configure.ac index 0f457f3bd..0581a2c5a 100644 --- a/configure.ac +++ b/configure.ac @@ -3155,13 +3155,13 @@ if test "x$openssl" = "xyes" ; then exit(EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519, buf, sizeof(buf)) == NULL); ]])], - [ - AC_MSG_RESULT([no]) - ], [ AC_MSG_RESULT([yes]) AC_DEFINE([OPENSSL_HAS_ED25519], [1], [libcrypto has ed25519 support]) + ], + [ + AC_MSG_RESULT([no]) ] ) fi