summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-10-12 16:23:05 +1100
committerDarren Tucker <dtucker@dtucker.net>2023-10-12 16:23:05 +1100
commit971e0cfcfd52ef1d73cf5244074c306a60006e89 (patch)
tree63494b424d77709c7c19c8ef30f79144225b8c85
parentc616e64688b2a0c1b4daad69b056099be998d121 (diff)
Correct arg order for ED255519 AC_LINK_IFELSE test.
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 0f457f3b..0581a2c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3156,12 +3156,12 @@ if test "x$openssl" = "xyes" ; then
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