summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--auth1.c3
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 96bc77e83..c5e32fc03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120030123
2 - (djm) OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2003/01/23 00:03:00
4 [auth1.c]
5 Don't log TIS auth response; "get rid of it" - markus@
6
120030122 720030122
2 - (djm) OpenBSD CVS Sync 8 - (djm) OpenBSD CVS Sync
3 - marc@cvs.openbsd.org 2003/01/21 18:14:36 9 - marc@cvs.openbsd.org 2003/01/21 18:14:36
@@ -1050,4 +1056,4 @@
1050 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1056 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1051 ok provos@ 1057 ok provos@
1052 1058
1053$Id: ChangeLog,v 1.2581 2003/01/22 06:53:16 djm Exp $ 1059$Id: ChangeLog,v 1.2582 2003/01/23 06:41:20 djm Exp $
diff --git a/auth1.c b/auth1.c
index 1af30e0ec..2ba411243 100644
--- a/auth1.c
+++ b/auth1.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: auth1.c,v 1.45 2002/11/21 23:03:51 deraadt Exp $"); 13RCSID("$OpenBSD: auth1.c,v 1.46 2003/01/23 00:03:00 djm Exp $");
14 14
15#include "xmalloc.h" 15#include "xmalloc.h"
16#include "rsa.h" 16#include "rsa.h"
@@ -285,7 +285,6 @@ do_authloop(Authctxt *authctxt)
285 debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE"); 285 debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE");
286 if (options.challenge_response_authentication == 1) { 286 if (options.challenge_response_authentication == 1) {
287 char *response = packet_get_string(&dlen); 287 char *response = packet_get_string(&dlen);
288 debug("got response '%s'", response);
289 packet_check_eom(); 288 packet_check_eom();
290 authenticated = verify_response(authctxt, response); 289 authenticated = verify_response(authctxt, response);
291 memset(response, 'r', dlen); 290 memset(response, 'r', dlen);