diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-08-11 23:15:05 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-08-11 23:15:05 +0000 |
commit | 11ff9204cf9b2fd451bf8e0e0dd3fe3f078c2808 (patch) | |
tree | b7e4dc8379e95f1d00127320caeb01210a937cb1 /libs/nixio/src/bind.c | |
parent | 5d0a48b5e007e2ff8291fff07a40e7b382fdf980 (diff) |
libs/nixio: fix possible issue with nonblocking bind()
Diffstat (limited to 'libs/nixio/src/bind.c')
-rw-r--r-- | libs/nixio/src/bind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/nixio/src/bind.c b/libs/nixio/src/bind.c index 81ab0bb480..711205955c 100644 --- a/libs/nixio/src/bind.c +++ b/libs/nixio/src/bind.c @@ -180,7 +180,7 @@ static int nixio_sock__bind_connect(lua_State *L, int do_bind) { } /* on success */ - if (!status) { + if (!status || errno == EINPROGRESS) { break; } } |