diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-24 16:00:28 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-24 16:00:28 +0000 |
commit | 0e3911b7b6fdce07ac96059177b6500c197b2059 (patch) | |
tree | aa99f05977dc839953dcc3aaa7aaff4df39e500a /usr.bin | |
parent | e09ae9748745f0b262faa3e0aa9e430f13d9a615 (diff) |
remove unused debug
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 5 |
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); |