summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-03-15 18:07:58 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-03-15 18:07:58 +0000
commit56ed2eb1b84a07fabdae8fe50cbb4bb3b8748abe (patch)
tree1308bb195e02560faa1a05101b0a097115c13199 /usr.sbin
parentc30517e2b15482509b73aac1eafa6ad744c0c27d (diff)
spin even cheaper
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/inetd/inetd.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index 59d94e53058..8cc5a445f45 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.80 2001/03/15 17:53:09 deraadt Exp $ */
+/* $OpenBSD: inetd.c,v 1.81 2001/03/15 18:07:57 deraadt Exp $ */
/* $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -41,7 +41,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/
-static char rcsid[] = "$OpenBSD: inetd.c,v 1.80 2001/03/15 17:53:09 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: inetd.c,v 1.81 2001/03/15 18:07:57 deraadt Exp $";
#endif /* not lint */
/*
@@ -451,18 +451,6 @@ main(argc, argv, envp)
(void) sigsetmask(0L);
}
- if (readablen != allsockn) {
- if (readablep)
- free(readablep);
- readablep = (fd_set *)calloc(allsockn, 1);
- if (readablep == NULL) {
- syslog(LOG_ERR, "Out of memory.");
- exit(1);
- }
- readablen = allsockn;
- }
- bcopy(allsockp, readablep, allsockn);
-
if (wantretry || wantconfig || wantreap) {
if (wantretry) {
doretry();
@@ -479,6 +467,18 @@ main(argc, argv, envp)
continue;
}
+ if (readablen != allsockn) {
+ if (readablep)
+ free(readablep);
+ readablep = (fd_set *)calloc(allsockn, 1);
+ if (readablep == NULL) {
+ syslog(LOG_ERR, "Out of memory.");
+ exit(1);
+ }
+ readablen = allsockn;
+ }
+ bcopy(allsockp, readablep, allsockn);
+
if ((n = select(maxsock + 1, readablep, NULL, NULL, NULL)) <= 0) {
if (n < 0 && errno != EINTR) {
syslog(LOG_WARNING, "select: %m");