summaryrefslogtreecommitdiffstats
path: root/auth1.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-01-23 17:41:20 +1100
committerDamien Miller <djm@mindrot.org>2003-01-23 17:41:20 +1100
commit21de87b936c0d2989790284dca3d5c51796ca966 (patch)
tree6d6bec20e596c06b9826fc2e3d6460d43e0000a6 /auth1.c
parent8b9cde784784949f9fdf0451f9da9030b76ca705 (diff)
- (djm) OpenBSD CVS Sync
- djm@cvs.openbsd.org 2003/01/23 00:03:00 [auth1.c] Don't log TIS auth response; "get rid of it" - markus@
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/auth1.c b/auth1.c
index 1af30e0e..2ba41124 100644
--- a/auth1.c
+++ b/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"
@@ -285,7 +285,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);