diff options
author | Tim Prouty <tprouty@samba.org> | 2009-02-09 09:36:40 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-02-09 13:23:44 -0800 |
commit | 1696298aad3f84b6cd9008bb2684db572b34dfb5 (patch) | |
tree | d142faa696d335e306c2428b63ce4b0f9486875f /source3/lib | |
parent | f8c0d2fe010e06bed02fab7f51e000907535416a (diff) | |
download | samba-1696298aad3f84b6cd9008bb2684db572b34dfb5.tar.gz samba-1696298aad3f84b6cd9008bb2684db572b34dfb5.tar.bz2 samba-1696298aad3f84b6cd9008bb2684db572b34dfb5.zip |
s3 async: Fix the build on systems that have ETIMEDOUT but not ETIME
Fallback on EAGAIN
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_sock.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index b9a7f8788d..c46aa2ac49 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -1061,10 +1061,13 @@ static void open_socket_out_connected(struct async_req *subreq) return; } - if ((sys_errno == ETIME) - || (sys_errno == EINPROGRESS) - || (sys_errno == EALREADY) - || (sys_errno == EAGAIN)) { + if ( +#ifdef ETIMEDOUT + (sys_errno == ETIMEDOUT) || +#endif + (sys_errno == EINPROGRESS) || + (sys_errno == EALREADY) || + (sys_errno == EAGAIN)) { /* * retry |