[serverloop.c]
     remove unused debug
This commit is contained in:
Ben Lindstrom 2002-03-26 02:01:30 +00:00
parent f90f58d846
commit 3dc40f997b
2 changed files with 5 additions and 6 deletions

View File

@ -4,7 +4,9 @@
- stevesk@cvs.openbsd.org 2002/03/23 20:57:26
[sshd.c]
setproctitle() after preauth child; ok markus@
- markus@cvs.openbsd.org 2002/03/24 16:00:27
[serverloop.c]
remove unused debug
20020324
- (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
@ -8019,4 +8021,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1978 2002/03/26 01:53:03 mouring Exp $
$Id: ChangeLog,v 1.1979 2002/03/26 02:01:30 mouring Exp $

View File

@ -35,7 +35,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: serverloop.c,v 1.99 2002/03/18 17:50:31 provos Exp $");
RCSID("$OpenBSD: serverloop.c,v 1.100 2002/03/24 16:00:27 markus Exp $");
#include "xmalloc.h"
#include "packet.h"
@ -318,9 +318,6 @@ wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
tv.tv_usec = 1000 * (max_time_milliseconds % 1000);
tvp = &tv;
}
if (tvp!=NULL)
debug3("tvp!=NULL kid %d mili %d", (int) child_terminated,
max_time_milliseconds);
/* Wait for something to happen, or the timeout to expire. */
ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);