summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-03-24 16:00:27 +0000
committermarkus <markus@openbsd.org>2002-03-24 16:00:27 +0000
commita5ad6a2fdd56b84747c8fb014097609682012e6f (patch)
tree02e7da7dbe7de38a789816b9b819b6f0e65f9f37 /usr.bin/ssh/serverloop.c
parentnon-access itlb fault puts the addr in isr:ior, not pcsq:pcoq (diff)
downloadwireguard-openbsd-a5ad6a2fdd56b84747c8fb014097609682012e6f.tar.xz
wireguard-openbsd-a5ad6a2fdd56b84747c8fb014097609682012e6f.zip
remove unused debug
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r--usr.bin/ssh/serverloop.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index 09da1971bd3..93d0c30b55d 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -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);