diff options
Diffstat (limited to 'usr.sbin/mopd/common/loop-bsd.c')
-rw-r--r-- | usr.sbin/mopd/common/loop-bsd.c | 8 |
1 files changed, 4 insertions, 4 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); } |