diff options
author | 2003-01-23 00:03:00 +0000 | |
---|---|---|
committer | 2003-01-23 00:03:00 +0000 | |
commit | 605f632ff5ecd3e49f5afaf3a0b62365ec4f69c4 (patch) | |
tree | b33b8febeb333a688e7681c3df1d306fe1d0a8ba | |
parent | make pmapdebug be zero by default (diff) | |
download | wireguard-openbsd-605f632ff5ecd3e49f5afaf3a0b62365ec4f69c4.tar.xz wireguard-openbsd-605f632ff5ecd3e49f5afaf3a0b62365ec4f69c4.zip |
Don't log TIS auth response; "get rid of it" - markus@
-rw-r--r-- | usr.bin/ssh/auth1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index f869fdb0a2b..7a01eb6a76f 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.45 2002/11/21 23:03:51 deraadt Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.46 2003/01/23 00:03:00 djm Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -288,7 +288,6 @@ do_authloop(Authctxt *authctxt) debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE"); if (options.challenge_response_authentication == 1) { char *response = packet_get_string(&dlen); - debug("got response '%s'", response); packet_check_eom(); authenticated = verify_response(authctxt, response); memset(response, 'r', dlen); |