gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 200/264: mqttd: s/errno/SOCKERRNO


From: gnunet
Subject: [gnurl] 200/264: mqttd: s/errno/SOCKERRNO
Date: Thu, 30 Apr 2020 16:08:23 +0200

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

nikita pushed a commit to branch master
in repository gnurl.

commit de2126b1821fecbc1f66715714cb34c5c2d14ec4
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Apr 15 15:48:38 2020 +0200

    mqttd: s/errno/SOCKERRNO
    
    To behave proper on Windows
    Reported-by: Gisle Vanem
    Bug: 
https://github.com/curl/curl/commit/5e855bbd18f84a02c951be7cac6188276818cdac#r38507132
    Closes #5241
---
 tests/server/mqttd.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/server/mqttd.c b/tests/server/mqttd.c
index 435df69a1..d9ad5923e 100644
--- a/tests/server/mqttd.c
+++ b/tests/server/mqttd.c
@@ -643,7 +643,7 @@ static bool incoming(curl_socket_t listenfd)
         logmsg("signalled to die, exiting...");
         return FALSE;
       }
-    } while((rc == -1) && ((error = errno) == EINTR));
+    } while((rc == -1) && ((error = SOCKERRNO) == EINTR));
 
     if(rc < 0) {
       logmsg("select() failed with error: (%d) %s",
@@ -700,9 +700,7 @@ static curl_socket_t sockdaemon(curl_socket_t sock,
         rc = wait_ms(delay);
         if(rc) {
           /* should not happen */
-          error = errno;
-          logmsg("wait_ms() failed with error: (%d) %s",
-                 error, strerror(error));
+          logmsg("wait_ms() failed with error: %d", rc);
           sclose(sock);
           return CURL_SOCKET_BAD;
         }

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



reply via email to

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