diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-06-27 00:26:59 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-06-27 00:26:59 +0000 |
commit | c07db8d8e7e4a421501a08efe999e9ccd7337855 (patch) | |
tree | a623a5d6810e1969f4bd837c790daddca9c1d303 /source/lib | |
parent | 74d29668eed397590d0a5c7460cb715d9331b4f6 (diff) | |
download | samba-c07db8d8e7e4a421501a08efe999e9ccd7337855.tar.gz samba-c07db8d8e7e4a421501a08efe999e9ccd7337855.tar.xz samba-c07db8d8e7e4a421501a08efe999e9ccd7337855.zip |
shmem.c: Changed debug to higher level
uid.c: Stop smbrun from deleting device files.
util.c: Added EAGAIN to known error list.
Jeremy (jallison@whistle.com)
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index 610f9f46a59..def84bf5ae0 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -2912,7 +2912,8 @@ connect_again: goto connect_again; } - if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY)) { + if (ret < 0 && (errno == EINPROGRESS || errno == EALREADY || + errno == EAGAIN)) { DEBUG(1,("timeout connecting to %s:%d\n",inet_ntoa(*addr),port)); close(res); return -1; |