aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-28 13:58:18 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-28 13:58:18 +0300
commit13cc9afe06a06e9f28a913b156922469f32be122 (patch)
treedf6b97f693a5cdfae0c26f05cbfe733c968b241e
parent5c478c5d61b06ebd581d18c28e3906b1e7e2101b (diff)
downloadlibmicrohttpd-13cc9afe06a06e9f28a913b156922469f32be122.tar.gz
libmicrohttpd-13cc9afe06a06e9f28a913b156922469f32be122.zip
Cosmetics: removed duplicated value
-rw-r--r--src/microhttpd/daemon.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 32334621..5dc92e13 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -2176,8 +2176,7 @@ thread_main_handle_connection (void *data)
2176 call_handlers (con, 2176 call_handlers (con,
2177 (0 != (p[0].revents & POLLIN)), 2177 (0 != (p[0].revents & POLLIN)),
2178 (0 != (p[0].revents & POLLOUT)), 2178 (0 != (p[0].revents & POLLOUT)),
2179 (0 != (p[0].revents & (POLLERR 2179 (0 != (p[0].revents & MHD_POLL_REVENTS_ERR_DISC)) ))
2180 | MHD_POLL_REVENTS_ERR_DISC))) ))
2181 goto exit; 2180 goto exit;
2182 } 2181 }
2183#endif 2182#endif