Skip to content

Commit

Permalink
deps: upgrade libuv to dc559a5
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Dec 18, 2012
1 parent ba75452 commit 7b2ef2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/uv/src/unix/tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ int uv_tcp_listen(uv_tcp_t* tcp, int backlog, uv_connection_cb cb) {

if (single_accept == -1) {
const char* val = getenv("UV_TCP_SINGLE_ACCEPT");
single_accept = (val == NULL) || (atoi(val) != 0); /* on by default */
single_accept = (val != NULL && atoi(val) != 0); /* Off by default. */
}

if (single_accept)
Expand Down

0 comments on commit 7b2ef2d

Please sign in to comment.