gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r28330 - in libmicrohttpd: . src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r28330 - in libmicrohttpd: . src/microhttpd
Date: Sun, 28 Jul 2013 16:41:40 +0200

Author: grothoff
Date: 2013-07-28 16:41:40 +0200 (Sun, 28 Jul 2013)
New Revision: 28330

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/src/microhttpd/daemon.c
Log:
-fix #2968

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2013-07-28 11:11:14 UTC (rev 28329)
+++ libmicrohttpd/ChangeLog     2013-07-28 14:41:40 UTC (rev 28330)
@@ -1,3 +1,7 @@
+Sun Jul 28 16:35:17 CEST 2013
+       Fixing build issue (missing #ifdef) in conjunction with
+       --disable-messages. -blueness
+
 Sat Jul 20 12:35:40 CEST 2013
        Fixing combination of MHD_USE_SSL and MHD_USE_EPOLL_LINUX_ONLY. -CG
 

Modified: libmicrohttpd/src/microhttpd/daemon.c
===================================================================
--- libmicrohttpd/src/microhttpd/daemon.c       2013-07-28 11:11:14 UTC (rev 
28329)
+++ libmicrohttpd/src/microhttpd/daemon.c       2013-07-28 14:41:40 UTC (rev 
28330)
@@ -3119,9 +3119,11 @@
          int sk_flags = fcntl (socket_fd, F_GETFL);
          if (0 != fcntl (socket_fd, F_SETFL, sk_flags | O_NONBLOCK))
            {
+#if HAVE_MESSAGES
              MHD_DLOG (daemon,
                        "Failed to make listen socket non-blocking: %s\n", 
                        STRERROR (errno));
+#endif
              if (0 != CLOSE (socket_fd))
                MHD_PANIC ("close failed\n");         
              goto free_and_fail;             




reply via email to

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