From: Willem Toorop Date: Wed, 10 Jul 2019 14:19:57 +0000 (+0200) Subject: typo X-Git-Tag: release-1.7.1-rc1~19^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0eb7fe0c5e11f8584cd4c4d65662b2fc6cd511d9;p=thirdparty%2Fldns.git typo --- diff --git a/configure.ac b/configure.ac index ee7ec498..f405f800 100644 --- a/configure.ac +++ b/configure.ac @@ -519,7 +519,7 @@ case "$enable_ed25519" in *) dnl default AC_CHECK_DECLS([NID_ED25519], [ AC_DEFINE_UNQUOTED([USE_ED25519], [1], [Define this to enable ED25519 support.]) - ], [if test "x$enable_ed25519" "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED25519 and you used --enable-ed25519.]) + ], [if test "x$enable_ed25519" = "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED25519 and you used --enable-ed25519.]) fi ], [AC_INCLUDES_DEFAULT #include ]) @@ -532,7 +532,7 @@ case "$enable_ed448" in *) dnl default AC_CHECK_DECLS([NID_ED448], [ AC_DEFINE_UNQUOTED([USE_ED448], [1], [Define this to enable ED448 support.]) - ], [if test "x$enable_ed448" "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED448 and you used --enable-ed448.]) + ], [if test "x$enable_ed448" = "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED448 and you used --enable-ed448.]) fi ], [AC_INCLUDES_DEFAULT #include ])