diff options
author | 2000-04-27 15:23:02 +0000 | |
---|---|---|
committer | 2000-04-27 15:23:02 +0000 | |
commit | fc21e9a9ee9f06b96e8bfe2cc0430e361a089f1b (patch) | |
tree | 2822c5d1e862fdea28ddbf5104a80f917e3cfabd /usr.bin/ssh/serverloop.c | |
parent | s/PCAP_ERRBUFF_SIZE/PCAP_ERRBUF_SIZE/ (sync with reality) (diff) | |
download | wireguard-openbsd-fc21e9a9ee9f06b96e8bfe2cc0430e361a089f1b.tar.xz wireguard-openbsd-fc21e9a9ee9f06b96e8bfe2cc0430e361a089f1b.zip |
cleanup logging for sshd/2, respect PasswordAuth no
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 93c33534d08..0f8381542db 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -720,7 +720,7 @@ server_input_channel_open(int type, int plen) rwindow = packet_get_int(); rmaxpack = packet_get_int(); - log("channel_input_open: ctype %s rchan %d win %d max %d", + debug("channel_input_open: ctype %s rchan %d win %d max %d", ctype, rchan, rwindow, rmaxpack); if (strcmp(ctype, "session") == 0) { |