summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J Stevens <paul@nfg.nl>2006-11-15 16:52:02 +0100
committerPaul J Stevens <paul@nfg.nl>2006-11-15 16:52:02 +0100
commit5bddefb518f87cb86ead3321e91d51673bd4e0e5 (patch)
tree805f9d436a313a1ccabed2b95a5eb20fabf95bd9
parent218c8d356f5b71dd205e55dba04f19faf915e8a4 (diff)
remove confusing error messagev2.2.0dbmail-2.2.0
-rw-r--r--serverchild.c5
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.