- (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@
This commit is contained in:
Damien Miller 2003-01-23 17:41:20 +11:00
parent 8b9cde7847
commit 21de87b936
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,9 @@
20030123
- (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@
20030122 20030122
- (djm) OpenBSD CVS Sync - (djm) OpenBSD CVS Sync
- marc@cvs.openbsd.org 2003/01/21 18:14:36 - marc@cvs.openbsd.org 2003/01/21 18:14:36
@ -1050,4 +1056,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284; save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@ ok provos@
$Id: ChangeLog,v 1.2581 2003/01/22 06:53:16 djm Exp $ $Id: ChangeLog,v 1.2582 2003/01/23 06:41:20 djm Exp $

View File

@ -10,7 +10,7 @@
*/ */
#include "includes.h" #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 "xmalloc.h"
#include "rsa.h" #include "rsa.h"
@ -285,7 +285,6 @@ do_authloop(Authctxt *authctxt)
debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE"); debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE");
if (options.challenge_response_authentication == 1) { if (options.challenge_response_authentication == 1) {
char *response = packet_get_string(&dlen); char *response = packet_get_string(&dlen);
debug("got response '%s'", response);
packet_check_eom(); packet_check_eom();
authenticated = verify_response(authctxt, response); authenticated = verify_response(authctxt, response);
memset(response, 'r', dlen); memset(response, 'r', dlen);