diff options
author | Paul J Stevens <paul@nfg.nl> | 2006-11-15 16:52:02 +0100 |
---|---|---|
committer | Paul J Stevens <paul@nfg.nl> | 2006-11-15 16:52:02 +0100 |
commit | 5bddefb518f87cb86ead3321e91d51673bd4e0e5 (patch) | |
tree | 805f9d436a313a1ccabed2b95a5eb20fabf95bd9 | |
parent | 218c8d356f5b71dd205e55dba04f19faf915e8a4 (diff) |
remove confusing error messagev2.2.0dbmail-2.2.0
-rw-r--r-- | serverchild.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/serverchild.c b/serverchild.c index 1a276b92..8448766a 100644 --- a/serverchild.c +++ b/serverchild.c @@ -236,11 +236,8 @@ int select_and_accept(ChildInfo_t * info, int * clientSocket, struct sockaddr * /* A null timeval means block indefinitely until there's activity. */ result = select(maxfd+1, &rfds, NULL, NULL, NULL); - - if (result < 1) { - TRACE(TRACE_ERROR, "select failed: [%s]", strerror(errno)); + if (result < 1) return -1; - } // Clear the self-pipe and return; we received a signal // and we need to loop again upstream to handle it. |