gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 187/205: tests/server/util: prefer <poll.h> over <s


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 187/205: tests/server/util: prefer <poll.h> over <sys/poll.h>
Date: Thu, 20 Apr 2017 16:22:07 +0200

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

ng0 pushed a commit to annotated tag gnurl-7.54.0
in repository gnurl.

commit fad74ba4cc1564a064853ad0a6dbff648cf04ecc
Author: Marcel Raad <address@hidden>
AuthorDate: Wed Apr 12 08:45:54 2017 +0200

    tests/server/util: prefer <poll.h> over <sys/poll.h>
    
    Follow-up to aa573c3c55cda72ec5ef677d87f6f46a53385f0c
    
    Ref: https://github.com/curl/curl/pull/1406
---
 tests/server/util.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/server/util.c b/tests/server/util.c
index b3e874434..a2340f462 100644
--- a/tests/server/util.c
+++ b/tests/server/util.c
@@ -34,10 +34,10 @@
 #ifdef HAVE_NETDB_H
 #include <netdb.h>
 #endif
-#ifdef HAVE_SYS_POLL_H
-#include <sys/poll.h>
-#elif defined(HAVE_POLL_H)
+#ifdef HAVE_POLL_H
 #include <poll.h>
+#elif defined(HAVE_SYS_POLL_H)
+#include <sys/poll.h>
 #endif
 #ifdef __MINGW32__
 #include <w32api.h>

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



reply via email to

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