gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] 01/02: Fixed non-TLS builds after 7b0d92902


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 01/02: Fixed non-TLS builds after 7b0d92902c92782844e84e40ab54d58a65531a65
Date: Mon, 27 Mar 2017 14:29:11 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 9a18334bb6b658466b16348216bce5f132a14bf9
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Mon Mar 27 15:27:41 2017 +0300

    Fixed non-TLS builds after 7b0d92902c92782844e84e40ab54d58a65531a65
---
 src/microhttpd/daemon.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index a5f9f853..a4a9a2b8 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -5486,8 +5486,10 @@ MHD_start_daemon_va (unsigned int flags,
                     _("Failed to create inter-thread communication channel: 
%s\n"),
                     MHD_itc_last_strerror_ ());
 #endif
+#ifdef HTTPS_SUPPORT
           if (NULL != daemon->priority_cache)
             gnutls_priority_deinit (daemon->priority_cache);
+#endif /* HTTPS_SUPPORT */
           free (daemon);
           return NULL;
         }
@@ -5500,8 +5502,10 @@ MHD_start_daemon_va (unsigned int flags,
                     _("file descriptor for inter-thread communication channel 
exceeds maximum value\n"));
 #endif
           MHD_itc_destroy_chk_ (daemon->itc);
+#ifdef HTTPS_SUPPORT
           if (NULL != daemon->priority_cache)
             gnutls_priority_deinit (daemon->priority_cache);
+#endif /* HTTPS_SUPPORT */
           free (daemon);
           return NULL;
         }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]