summaryrefslogtreecommitdiffstats
path: root/tcpd/tcpd.c
diff options
context:
space:
mode:
authorSam Varshavchik2020-05-09 09:16:29 -0400
committerSam Varshavchik2020-05-09 09:16:29 -0400
commit1310320b6a0f31307896119968b13341b073bce2 (patch)
tree1c3223f77f8a47b74aa269bec531a43613280890 /tcpd/tcpd.c
parente8f1e9e157cbd01be78caaad7fe5be7952ec7b36 (diff)
downloadcourier-libs-1310320b6a0f31307896119968b13341b073bce2.tar.bz2
Fix spurious message.
Diffstat (limited to 'tcpd/tcpd.c')
-rw-r--r--tcpd/tcpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcpd/tcpd.c b/tcpd/tcpd.c
index 1d1947a..094940a 100644
--- a/tcpd/tcpd.c
+++ b/tcpd/tcpd.c
@@ -1143,7 +1143,7 @@ static int doit(int argn, int argc, char **argv)
if (select(maxfd+1, &fdr, NULL, NULL, NULL) <= 0)
{
if (errno != EINTR)
- perror("accept");
+ perror("select");
continue;
}