From owner-cvs-usrsbin Sat Oct 12 09:22:14 1996 Return-Path: owner-cvs-usrsbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA08171 for cvs-usrsbin-outgoing; Sat, 12 Oct 1996 09:22:14 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA08121; Sat, 12 Oct 1996 09:20:39 -0700 (PDT) Date: Sat, 12 Oct 1996 09:20:39 -0700 (PDT) From: "Jordan K. Hubbard" Message-Id: <199610121620.JAA08121@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ppp chap.c command.c lcp.c main.c route.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 96/10/12 09:20:38 Modified: usr.sbin/ppp chap.c command.c lcp.c main.c route.c Log: 1. Room to calculate MD5 for CHAP negotiation is shorter than required. a core is not dumped at first connecting time and dumped at second or third time. (patch I) 2. A routine for "show route" refers out of allocated space. Values pointed by "lp" should be read as CHAR, I think. there is also no free() for disallocation. (patch II) Here is also a patch for an improvement: In current imprementation, even if PPP connection is disconnected by time out, prompt of interactive mode does not change from "PPP>" to "ppp>" to indicate the disconnection on a terminal. So I modified the code to do that. (patch III) Submitted-By: NAKAMURA Motonori Revision Changes Path 1.7 +3 -2 src/usr.sbin/ppp/chap.c 1.23 +8 -4 src/usr.sbin/ppp/command.c 1.10 +8 -1 src/usr.sbin/ppp/lcp.c 1.22 +5 -1 src/usr.sbin/ppp/main.c 1.9 +6 -4 src/usr.sbin/ppp/route.c