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 /lib/async_req | |
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 'lib/async_req')
-rw-r--r-- | lib/async_req/async_sock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/async_req/async_sock.c b/lib/async_req/async_sock.c index 46ad29d053..02ae880683 100644 --- a/lib/async_req/async_sock.c +++ b/lib/async_req/async_sock.c @@ -116,10 +116,10 @@ bool async_req_is_errno(struct async_req *req, int *err) *err = (int)error; break; case ASYNC_REQ_TIMED_OUT: -#ifdef HAVE_ETIMEDOUT +#ifdef ETIMEDOUT *err = ETIMEDOUT; #else - *err = EIO; + *err = EAGAIN; #endif break; case ASYNC_REQ_NO_MEMORY: |