mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.poll: Fix inverted logic
This commit is contained in:
parent
fda067d696
commit
f26390b484
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue