gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r14599 - in libmicrohttpd: . src/daemon


From: gnunet
Subject: [GNUnet-SVN] r14599 - in libmicrohttpd: . src/daemon
Date: Sat, 5 Mar 2011 22:03:21 +0100

Author: grothoff
Date: 2011-03-05 22:03:21 +0100 (Sat, 05 Mar 2011)
New Revision: 14599

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/src/daemon/daemon.c
Log:
fixing 1667

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2011-03-05 11:17:10 UTC (rev 14598)
+++ libmicrohttpd/ChangeLog     2011-03-05 21:03:21 UTC (rev 14599)
@@ -1,3 +1,7 @@
+Sat Mar  5 22:00:36 CET 2011
+       Do not use POLLRDHUP, which causes build errors on OS X / OpenSolaris
+       (#1667). -CG
+
 Fri Mar  4 10:24:04 CET 2011
        Added new API to allow MHD server to initiate connection to
        client (special use-case for servers behind NAT), thereby

Modified: libmicrohttpd/src/daemon/daemon.c
===================================================================
--- libmicrohttpd/src/daemon/daemon.c   2011-03-05 11:17:10 UTC (rev 14598)
+++ libmicrohttpd/src/daemon/daemon.c   2011-03-05 21:03:21 UTC (rev 14599)
@@ -650,7 +650,7 @@
 
          fd = con->daemon->socket_fd;
          p[1].fd = fd;
-         p[1].events |= POLLIN | POLLRDHUP;
+         p[1].events |= POLLIN;
          
          if (poll (p, 
                    (fd != -1) ? 2 : 1, 




reply via email to

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