From 74deaec6372ab2e8ff31615e8cc598504bfd75e5 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Tue, 13 Jan 2015 18:23:24 +0100 Subject: [SERVER] Fix stupid bug (not using errno) --- src/server/protocol.h | 5 +++-- src/server/uplink.c | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/server/protocol.h b/src/server/protocol.h index c0eda5b..b0a1f43 100644 --- a/src/server/protocol.h +++ b/src/server/protocol.h @@ -3,6 +3,7 @@ #include "../types.h" #include "../serialize.h" +#include #define FLAGS8_SERVER (1) @@ -19,8 +20,8 @@ static inline int dnbd3_read_reply(int sock, dnbd3_reply_t *reply, bool wait) int ret = recv( sock, reply, sizeof(*reply), (wait ? MSG_WAITALL : MSG_DONTWAIT) | MSG_NOSIGNAL ); if ( ret == 0 ) return REPLY_CLOSED; if ( ret < 0 ) { - if ( ret == EAGAIN || ret == EWOULDBLOCK ) return REPLY_AGAIN; - if ( ret == EINTR ) return REPLY_INTR; + if ( errno == EAGAIN || errno == EWOULDBLOCK ) return REPLY_AGAIN; + if ( errno == EINTR ) return REPLY_INTR; return REPLY_ERRNO; } if ( !wait && ret != sizeof(*reply) ) ret += recv( sock, reply + ret, sizeof(*reply) - ret, MSG_WAITALL | MSG_NOSIGNAL ); diff --git a/src/server/uplink.c b/src/server/uplink.c index d1ae48e..0b526fd 100644 --- a/src/server/uplink.c +++ b/src/server/uplink.c @@ -501,7 +501,7 @@ static void uplink_handleReceive(dnbd3_connection_t *link) goto error_cleanup; } if ( ret != REPLY_OK ) { - memlogf( "[INFO] Uplink: Connection error (%s)", link->image->path ); + memlogf( "[INFO] Uplink: Connection error %d (%s)", ret, link->image->path ); goto error_cleanup; } if ( inReply.size > 9000000 ) { // TODO: Configurable -- cgit v1.2.3-55-g7522