Fix off by 1 error.

This commit is contained in:
Guido van Rooij 1998-07-02 19:35:40 +00:00
parent ab48ff6913
commit 1af721d635
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=37344

View File

@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)syslogd.c 8.3 (Berkeley) 4/4/94";
#endif
static const char rcsid[] =
"$Id: syslogd.c,v 1.35 1998/06/25 19:39:19 guido Exp $";
"$Id: syslogd.c,v 1.36 1998/06/27 21:45:59 steve Exp $";
#endif /* not lint */
/*
@ -441,7 +441,7 @@ main(argc, argv)
}
/*dprintf("readfds = %#x\n", readfds);*/
nfds = select(nfds, &readfds, (fd_set *)NULL,
nfds = select(nfds+1, &readfds, (fd_set *)NULL,
(fd_set *)NULL, tvp);
if (nfds == 0) {
if (tvp) {