]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Correct arg order for ED255519 AC_LINK_IFELSE test.
authorDarren Tucker <dtucker@dtucker.net>
Thu, 12 Oct 2023 05:23:05 +0000 (16:23 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Thu, 12 Oct 2023 05:23:05 +0000 (16:23 +1100)
configure.ac

index 0f457f3bd454093ea09d7f10e60b5a0e27f7ca27..0581a2c5a75c351794d81c3f35570f1e187a0211 100644 (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