diff options
author | brian <brian@FreeBSD.org> | 2001-08-02 20:12:48 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2001-08-02 20:12:48 +0000 |
commit | 967f33f3bc36554ac3f0897259485e4f2698cec4 (patch) | |
tree | 0e8dbd8da7f35a90657ae981a81cd8b10f86f3e1 | |
parent | ad8e414cce2c897b9ecffdc3613102c7302b2074 (diff) | |
download | FreeBSD-src-967f33f3bc36554ac3f0897259485e4f2698cec4.zip FreeBSD-src-967f33f3bc36554ac3f0897259485e4f2698cec4.tar.gz |
The wrong-last-byte bug on win98 chap responses is also in winME
-rw-r--r-- | usr.sbin/ppp/chap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/chap.c b/usr.sbin/ppp/chap.c index de7ddd8..71121b7 100644 --- a/usr.sbin/ppp/chap.c +++ b/usr.sbin/ppp/chap.c @@ -745,7 +745,7 @@ chap_Input(struct bundle *bundle, struct link *l, struct mbuf *bp) *ans = chap->auth.id; bp = mbuf_Read(bp, ans + 1, alen); if (p->link.lcp.want_authtype == 0x81 && ans[alen] != '\0') { - log_Printf(LogWARN, "%s: Compensating for corrupt (Win98?) " + log_Printf(LogWARN, "%s: Compensating for corrupt (Win98/WinME?) " "CHAP81 RESPONSE\n", l->name); ans[alen] = '\0'; } |