diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-11 18:56:11 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-11 18:56:11 +0200 |
commit | dd8a4ff4985f7b739a38ceb20f56225c2fbfd547 (patch) | |
tree | 6b15014b0bfd9f4b2089a2e37315d622ebd19fcb | |
parent | 25fac9a74b12cf60842f4f043a30f98c3e2913d3 (diff) | |
download | prosody-dd8a4ff4985f7b739a38ceb20f56225c2fbfd547.tar.gz prosody-dd8a4ff4985f7b739a38ceb20f56225c2fbfd547.zip |
util.poll: Fix inverted logic
-rw-r--r-- | util-src/poll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/poll.c b/util-src/poll.c index d2d9dc03..7fd28524 100644 --- a/util-src/poll.c +++ b/util-src/poll.c @@ -351,7 +351,7 @@ int Lgetfd(lua_State *L) { int Lgc(lua_State *L) { struct Lpoll_state *state = luaL_checkudata(L, 1, STATE_MT); - if(state->epoll_fd != -1) { + if(state->epoll_fd == -1) { return 0; } |