mirror of git://anongit.mindrot.org/openssh.git
- (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:
parent
8b9cde7847
commit
21de87b936
|
@ -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
|
||||
- (djm) OpenBSD CVS Sync
|
||||
- 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;
|
||||
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 $
|
||||
|
|
3
auth1.c
3
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);
|
||||
|
|
Loading…
Reference in New Issue