Fix DTLS fallback to OpenSSL for old GnuTLS
authorDavid Woodhouse <David.Woodhouse@intel.com>
Wed, 13 Jun 2012 11:05:50 +0000 (12:05 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Wed, 13 Jun 2012 11:05:53 +0000 (12:05 +0100)
Due to a typo, it wasn't using OpenSSL for DTLS unless you specified
--without-openssl on the configure command line.

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
configure.ac

index 0c731ae..7d6ebf6 100644 (file)
@@ -211,7 +211,7 @@ if test "$with_gnutls" = "yes"; then
                 [AC_DEFINE(HAVE_GNUTLS_PKCS12_SIMPLE_PARSE, 1)], [])
     AC_CHECK_FUNC(gnutls_certificate_set_key,
                 [AC_DEFINE(HAVE_GNUTLS_CERTIFICATE_SET_KEY, 1)], [])
-    if test "$with_openssl" != "" || test "$with_openssl" = "no"; then
+    if test "$with_openssl" = "" || test "$with_openssl" = "no"; then
        AC_CHECK_FUNC(gnutls_session_set_premaster,
                 [have_gnutls_dtls=yes], [have_gnutls_dtls=no])
     else