diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-07 14:50:45 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-09-07 14:50:45 +0000 |
commit | de5f0db0add0201e03ca82c576c99bae096bd78a (patch) | |
tree | 2f0b5bb9c8fc469e1629c7e199882dbd24a39623 /syslogd.c | |
parent | 46171a73e5fd2405cdddff77d27af4154722b2c4 (diff) | |
download | rsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.tar.gz rsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.tar.bz2 rsyslog-de5f0db0add0201e03ca82c576c99bae096bd78a.zip |
removed misleading debug message (looked like an error, but was normal
state)
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |