summaryrefslogtreecommitdiffstats
path: root/runtime/nsdpoll_ptcp.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-01-27 17:25:50 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-01-27 17:25:50 +0100
commitb621be0936468eacd19f55c9ff43c7598a4a6701 (patch)
tree15502ac4ef7ab3f21a46fdaf31c20ed4aedf51d2 /runtime/nsdpoll_ptcp.c
parentc6447bb3452e9ac3c4daed5827f711c2c6956ca4 (diff)
downloadrsyslog-b621be0936468eacd19f55c9ff43c7598a4a6701.tar.gz
rsyslog-b621be0936468eacd19f55c9ff43c7598a4a6701.tar.xz
rsyslog-b621be0936468eacd19f55c9ff43c7598a4a6701.zip
resolved problem with intermixing requests
Diffstat (limited to 'runtime/nsdpoll_ptcp.c')
-rw-r--r--runtime/nsdpoll_ptcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/nsdpoll_ptcp.c b/runtime/nsdpoll_ptcp.c
index 76c4e887..b6002b09 100644
--- a/runtime/nsdpoll_ptcp.c
+++ b/runtime/nsdpoll_ptcp.c
@@ -70,8 +70,8 @@ addEvent(nsdpoll_ptcp_t *pThis, int id, void *pUsr, int mode, nsd_ptcp_t *pSock,
pNew->id = id;
pNew->pUsr = pUsr;
pNew->pSock = pSock;
- //pNew->event.events = 0; /* TODO: at some time we should be able to use EPOLLET */
- pNew->event.events = EPOLLET;
+ pNew->event.events = 0; /* TODO: at some time we should be able to use EPOLLET */
+ //pNew->event.events = EPOLLET;
if(mode & NSDPOLL_IN)
pNew->event.events |= EPOLLIN;
if(mode & NSDPOLL_OUT)