Correct arg order for ED255519 AC_LINK_IFELSE test.

This commit is contained in:
Darren Tucker 2023-10-12 16:23:05 +11:00
parent c616e64688
commit 971e0cfcfd
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -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