summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/mopd/common/loop-bsd.c8
-rw-r--r--usr.sbin/mopd/otherOS/loop.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/mopd/common/loop-bsd.c b/usr.sbin/mopd/common/loop-bsd.c
index 1c58556c81c..b85f38633d6 100644
--- a/usr.sbin/mopd/common/loop-bsd.c
+++ b/usr.sbin/mopd/common/loop-bsd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: loop-bsd.c,v 1.3 1997/08/18 03:11:30 millert Exp $ */
+/* $OpenBSD: loop-bsd.c,v 1.4 1998/07/07 17:32:46 art Exp $ */
/*
* Copyright (c) 1993-95 Mats O Jansson. All rights reserved.
@@ -30,7 +30,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: loop-bsd.c,v 1.3 1997/08/18 03:11:30 millert Exp $";
+static char rcsid[] = "$OpenBSD: loop-bsd.c,v 1.4 1998/07/07 17:32:46 art Exp $";
#endif
#include <stdlib.h>
@@ -137,8 +137,8 @@ Loop()
}
while (1) {
listeners = fds;
- if (select(maxfd + 1, &listeners, (struct fd_set *) 0,
- (struct fd_set *) 0, (struct timeval *) 0) < 0) {
+ if (select(maxfd + 1, &listeners, (fd_set *) 0,
+ (fd_set *) 0, (struct timeval *) 0) < 0) {
syslog(LOG_ERR, "select: %m");
exit(0);
}
diff --git a/usr.sbin/mopd/otherOS/loop.c b/usr.sbin/mopd/otherOS/loop.c
index d23d6af0496..59e86a848be 100644
--- a/usr.sbin/mopd/otherOS/loop.c
+++ b/usr.sbin/mopd/otherOS/loop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: loop.c,v 1.2 1996/09/21 19:12:44 maja Exp $ */
+/* $OpenBSD: loop.c,v 1.3 1998/07/07 17:32:44 art Exp $ */
/*
* Copyright (c) 1993-95 Mats O Jansson. All rights reserved.
@@ -30,7 +30,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: loop.c,v 1.2 1996/09/21 19:12:44 maja Exp $";
+static char rcsid[] = "$OpenBSD: loop.c,v 1.3 1998/07/07 17:32:44 art Exp $";
#endif
#include "os.h"
@@ -160,8 +160,8 @@ Loop()
}
while (1) {
listeners = fds;
- if (select(maxfd + 1, &listeners, (struct fd_set *) 0,
- (struct fd_set *) 0, (struct timeval *) 0) < 0) {
+ if (select(maxfd + 1, &listeners, (fd_set *) 0,
+ (fd_set *) 0, (struct timeval *) 0) < 0) {
fprintf(stderr, "select: %s");
exit(0);
}