]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (djm) OpenBSD CVS Sync
authorDamien Miller <djm@mindrot.org>
Thu, 23 Jan 2003 06:41:20 +0000 (17:41 +1100)
committerDamien Miller <djm@mindrot.org>
Thu, 23 Jan 2003 06:41:20 +0000 (17:41 +1100)
   - djm@cvs.openbsd.org 2003/01/23 00:03:00
     [auth1.c]
     Don't log TIS auth response; "get rid of it" - markus@

ChangeLog
auth1.c

index 96bc77e83eef5c0a15972f9ef7a769f6dfc25c91..c5e32fc03dba19619a7ed1a073568e6192dcc64f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
      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 $
diff --git a/auth1.c b/auth1.c
index 1af30e0ec727cb83535f45ef8be9650b9273f597..2ba411243ef859f1b63297c87ddbef754a00f48b 100644 (file)
--- 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);