[serverloop.c]
     debug2->3
This commit is contained in:
Ben Lindstrom 2001-03-05 05:58:23 +00:00
parent 086cf214cf
commit f4c73112d0
2 changed files with 6 additions and 3 deletions

View File

@ -34,6 +34,9 @@
- markus@cvs.openbsd.org 2001/02/22 21:59:44
[auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
use pwcopy in ssh.c, too
- markus@cvs.openbsd.org 2001/02/23 15:34:53
[serverloop.c]
debug2->3
20010304
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@ -4226,4 +4229,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.862 2001/03/05 05:56:40 mouring Exp $
$Id: ChangeLog,v 1.863 2001/03/05 05:58:23 mouring Exp $

View File

@ -35,7 +35,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: serverloop.c,v 1.50 2001/02/19 09:53:32 markus Exp $");
RCSID("$OpenBSD: serverloop.c,v 1.51 2001/02/23 15:34:53 markus Exp $");
#include "xmalloc.h"
#include "packet.h"
@ -245,7 +245,7 @@ retry_select:
tvp = &tv;
}
if (tvp!=NULL)
debug2("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
debug3("tvp!=NULL kid %d mili %d", child_terminated, max_time_milliseconds);
/* Wait for something to happen, or the timeout to expire. */
ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp);