From 94cf30c9bbe64b57741291a351498050cb8a06ef Mon Sep 17 00:00:00 2001 From: thunder2 Date: Wed, 4 Aug 2010 11:27:16 +0000 Subject: [PATCH] Changed the values of ETIMEDOUT to 10060 like in pthread.h to prevent compiler warnings. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3341 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- src/util/bdnet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/bdnet.h b/src/util/bdnet.h index 1fbf186..5062812 100644 --- a/src/util/bdnet.h +++ b/src/util/bdnet.h @@ -144,7 +144,7 @@ int bdnet_checkTTL(int fd); #define ECONNRESET 104 -#define ETIMEDOUT 110 +#define ETIMEDOUT 10060 // value from pthread.h #define ECONNREFUSED 111 #define EHOSTDOWN 112 #define EHOSTUNREACH 113