summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-09-07 14:50:45 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-09-07 14:50:45 +0000
commitde5f0db0add0201e03ca82c576c99bae096bd78a (patch)
tree2f0b5bb9c8fc469e1629c7e199882dbd24a39623
parent46171a73e5fd2405cdddff77d27af4154722b2c4 (diff)
downloadrsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.tar.gz
rsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.tar.xz
rsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.zip
removed misleading debug message (looked like an error, but was normal
state)
-rw-r--r--syslogd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/syslogd.c b/syslogd.c
index 176d3149..0bad5264 100644
--- a/syslogd.c
+++ b/syslogd.c
@@ -5505,7 +5505,7 @@ static rsRetVal processSelectAfter(int maxfds, int nfds, fd_set *pReadfds, fd_se
/* the following macro is used to decrement the number of to-be-probed
* fds and abort this function when we are done with all.
*/
-# define FDPROCESSED() if(--nfds == 0) { dbgprintf("nfds == 0, aborting\n");ABORT_FINALIZE(RS_RET_OK); }
+# define FDPROCESSED() if(--nfds == 0) { ABORT_FINALIZE(RS_RET_OK); }
if (nfds < 0) {
if (errno != EINTR)