From 971e0cfcfd52ef1d73cf5244074c306a60006e89 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Thu, 12 Oct 2023 16:23:05 +1100 Subject: [PATCH] Correct arg order for ED255519 AC_LINK_IFELSE test. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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