summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/chap.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1999-02-07 13:48:38 +0000
committerbrian <brian@FreeBSD.org>1999-02-07 13:48:38 +0000
commitc661658ae7cbb345eb3155a9bdb27fef06290ac5 (patch)
tree331f54b7605f05449d535009eaeb4bca32e12257 /usr.sbin/ppp/chap.c
parentcb7f925859b5763a0dc1f4c7da4f992339d56abf (diff)
downloadFreeBSD-src-c661658ae7cbb345eb3155a9bdb27fef06290ac5.zip
FreeBSD-src-c661658ae7cbb345eb3155a9bdb27fef06290ac5.tar.gz
Remove forgotten diagnostics
Diffstat (limited to 'usr.sbin/ppp/chap.c')
-rw-r--r--usr.sbin/ppp/chap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/ppp/chap.c b/usr.sbin/ppp/chap.c
index 895b34e..1889054 100644
--- a/usr.sbin/ppp/chap.c
+++ b/usr.sbin/ppp/chap.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: chap.c,v 1.39 1999/01/29 22:46:31 brian Exp $
+ * $Id: chap.c,v 1.40 1999/02/06 02:54:44 brian Exp $
*
* TODO:
*/
@@ -158,7 +158,6 @@ chap_BuildAnswer(char *name, char *key, u_char id, char *challenge, int MSChap)
*digest++ = 16; /* value size */
MD5Init(&MD5context);
-log_Printf(LogPHASE, "Build with 0x%x, %s & %.*s\n", id, key, *challenge, challenge+1);
MD5Update(&MD5context, &id, 1);
MD5Update(&MD5context, key, klen);
MD5Update(&MD5context, challenge + 1, *challenge);
@@ -356,7 +355,6 @@ chap_Input(struct physical *p, struct mbuf *bp)
#ifndef NORADIUS
if (*p->dl->bundle->radius.cfg.file) {
chap->challenge[*chap->challenge+1] = '\0';
-log_Printf(LogPHASE, "Challenge %s, answer is %d bytes starting with %d\n", chap->challenge+1, alen+1, *ans);
radius_Authenticate(&p->dl->bundle->radius, &chap->auth,
chap->auth.in.name, ans, chap->challenge + 1);
} else
OpenPOWER on IntegriCloud