From owner-cvs-usrsbin Sun Jun 8 20:28:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA01039 for cvs-usrsbin-outgoing; Sun, 8 Jun 1997 20:28:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA00995; Sun, 8 Jun 1997 20:27:57 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA06879; Sun, 8 Jun 1997 20:27:51 -0700 (PDT) Date: Sun, 8 Jun 1997 20:27:51 -0700 (PDT) Message-Id: <199706090327.UAA06879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile alias_cmd.c arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chap.h chat.c chat.h command.c defs.h filter.c filter.h fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h lcpproto.h loadalias.c log.c log.h ... Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/08 20:27:51 PDT Modified files: usr.sbin/ppp Makefile alias_cmd.c arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chap.h chat.c chat.h command.c defs.h filter.c filter.h fsm.c fsm.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h lcpproto.h loadalias.c log.c log.h lqr.c lqr.h main.c main.h mbuf.c mbuf.h modem.c modem.h os.c os.h pap.c passwdauth.c passwdauth.h phase.h pred.c pred.h route.c route.h sig.c sig.h slcompress.c slcompress.h systems.c systems.h timeout.h timer.c vars.c vars.h vjcomp.c Removed files: usr.sbin/ppp cdefs.h Log: Overhaul ppp: o Use syslog o Remove references to stdout/stderr (incl perror()) o Introduce VarTerm - the interactive terminal or zero o Allow "set timeout" to affect current session o Change "set debug" to "set log" o Allow "set log [+|-]flag" o Make MSEXT and PASSWDAUTH stuff the default o Move all #ifdef DEBUG stuff into the code - this shouldn't be too much overhead. It's now controlled with "set log +debug" o Add "set log command, debug, tun, warn, error, alert" o Remove cdefs.h, and assume an ansi compiler. o Improve all diagnostic output o Don't trap SIGSEGV o SIGHUP now terminates again (log files are controlled by syslog) o Call CloseModem() when changing devices o Fix parsing of third arg of "delete" I think this fixes the "magic is same" problems that some people have been experiencing. The man page is being rewritten. It'll follow soon. Revision Changes Path 1.21 +4 -5 src/usr.sbin/ppp/Makefile 1.4 +45 -33 src/usr.sbin/ppp/alias_cmd.c 1.12 +20 -19 src/usr.sbin/ppp/arp.c 1.4 +3 -3 src/usr.sbin/ppp/arp.h 1.9 +3 -3 src/usr.sbin/ppp/async.c 1.14 +2 -4 src/usr.sbin/ppp/auth.c 1.6 +7 -7 src/usr.sbin/ppp/auth.h 1.13 +28 -30 src/usr.sbin/ppp/ccp.c 1.6 +7 -7 src/usr.sbin/ppp/ccp.h 1.18 +11 -40 src/usr.sbin/ppp/chap.c 1.6 +2 -2 src/usr.sbin/ppp/chap.h 1.26 +28 -40 src/usr.sbin/ppp/chat.c 1.6 +3 -4 src/usr.sbin/ppp/chat.h 1.54 +452 -371 src/usr.sbin/ppp/command.c 1.15 +1 -2 src/usr.sbin/ppp/defs.h 1.10 +68 -59 src/usr.sbin/ppp/filter.c 1.8 +2 -2 src/usr.sbin/ppp/filter.h 1.13 +35 -47 src/usr.sbin/ppp/fsm.c 1.8 +25 -26 src/usr.sbin/ppp/fsm.h 1.16 +22 -28 src/usr.sbin/ppp/hdlc.c 1.9 +8 -8 src/usr.sbin/ppp/hdlc.h 1.21 +43 -43 src/usr.sbin/ppp/ip.c 1.4 +4 -4 src/usr.sbin/ppp/ip.h 1.21 +62 -62 src/usr.sbin/ppp/ipcp.c 1.7 +7 -9 src/usr.sbin/ppp/ipcp.h 1.23 +56 -61 src/usr.sbin/ppp/lcp.c 1.7 +7 -8 src/usr.sbin/ppp/lcp.h 1.7 +9 -10 src/usr.sbin/ppp/lcpproto.h 1.2 +7 -11 src/usr.sbin/ppp/loadalias.c 1.13 +108 -277 src/usr.sbin/ppp/log.c 1.11 +31 -72 src/usr.sbin/ppp/log.h 1.15 +27 -35 src/usr.sbin/ppp/lqr.c 1.6 +7 -7 src/usr.sbin/ppp/lqr.h 1.60 +129 -140 src/usr.sbin/ppp/main.c 1.4 +2 -2 src/usr.sbin/ppp/main.h 1.7 +22 -44 src/usr.sbin/ppp/mbuf.c 1.5 +12 -10 src/usr.sbin/ppp/mbuf.h 1.42 +76 -127 src/usr.sbin/ppp/modem.c 1.8 +17 -18 src/usr.sbin/ppp/modem.h 1.22 +43 -36 src/usr.sbin/ppp/os.c 1.6 +12 -12 src/usr.sbin/ppp/os.h 1.13 +14 -16 src/usr.sbin/ppp/pap.c 1.4 +5 -7 src/usr.sbin/ppp/passwdauth.c 1.2 +1 -1 src/usr.sbin/ppp/passwdauth.h 1.6 +2 -3 src/usr.sbin/ppp/phase.h 1.12 +7 -10 src/usr.sbin/ppp/pred.c 1.4 +4 -4 src/usr.sbin/ppp/pred.h 1.14 +56 -86 src/usr.sbin/ppp/route.c 1.4 +2 -2 src/usr.sbin/ppp/route.h 1.7 +3 -3 src/usr.sbin/ppp/sig.c 1.8 +3 -3 src/usr.sbin/ppp/sig.h 1.9 +23 -30 src/usr.sbin/ppp/slcompress.c 1.6 +4 -5 src/usr.sbin/ppp/slcompress.h 1.12 +17 -23 src/usr.sbin/ppp/systems.c 1.5 +4 -4 src/usr.sbin/ppp/systems.h 1.10 +9 -8 src/usr.sbin/ppp/timeout.h 1.17 +23 -35 src/usr.sbin/ppp/timer.c 1.19 +50 -101 src/usr.sbin/ppp/vars.c 1.18 +8 -6 src/usr.sbin/ppp/vars.h 1.8 +7 -13 src/usr.sbin/ppp/vjcomp.c From owner-cvs-usrsbin Mon Jun 9 16:40:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA21765 for cvs-usrsbin-outgoing; Mon, 9 Jun 1997 16:40:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA21621; Mon, 9 Jun 1997 16:38:54 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA13831; Mon, 9 Jun 1997 16:38:40 -0700 (PDT) Date: Mon, 9 Jun 1997 16:38:40 -0700 (PDT) Message-Id: <199706092338.QAA13831@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 pred.c vars.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/09 16:38:40 PDT Modified files: usr.sbin/ppp ppp.8 pred.c vars.c Log: Make the man page a little more detailed. Update the version number to 1.00. Increase the predictor-1 buffer by 2 bytes. Revision Changes Path 1.36 +970 -322 src/usr.sbin/ppp/ppp.8 1.13 +3 -3 src/usr.sbin/ppp/pred.c 1.20 +3 -3 src/usr.sbin/ppp/vars.c From owner-cvs-usrsbin Tue Jun 10 02:45:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA23120 for cvs-usrsbin-outgoing; Tue, 10 Jun 1997 02:45:46 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA23078; Tue, 10 Jun 1997 02:45:19 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA18680; Tue, 10 Jun 1997 02:45:02 -0700 (PDT) Date: Tue, 10 Jun 1997 02:45:02 -0700 (PDT) Message-Id: <199706100945.CAA18680@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp Makefile alias_cmd.c arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chap.h chat.c chat.h command.c command.h defs.h filter.c filter.h fsm.c fsm.h global.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h lcpproto.h ... Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/10 02:45:01 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp Makefile alias_cmd.c arp.c arp.h async.c auth.c auth.h ccp.c ccp.h chap.c chap.h chat.c chat.h command.c command.h defs.h filter.c filter.h fsm.c fsm.h global.h hdlc.c hdlc.h ip.c ip.h ipcp.c ipcp.h lcp.c lcp.h lcpproto.h loadalias.c log.c log.h lqr.c lqr.h main.c main.h mbuf.c mbuf.h modem.c modem.h os.c os.h pap.c pap.h passwdauth.c passwdauth.h pathnames.h phase.h ppp.8 pred.c pred.h route.c route.h sig.c sig.h slcompress.c slcompress.h systems.c systems.h timeout.h timer.c vars.c vars.h vjcomp.c Removed files: (Branch: RELENG_2_2) usr.sbin/ppp cdefs.h Log: YAMFC: Overhaul ppp: o Use syslog o Remove references to stdout/stderr (incl perror()) o Introduce VarTerm - the interactive terminal or zero o Allow "set timeout" to affect current session o Change "set debug" to "set log" o Allow "set log [+|-]flag" o Make MSEXT and PASSWDAUTH stuff the default o Move all #ifdef DEBUG stuff into the code - this shouldn't be too much overhead. It's now controlled with "set log +debug" o Add "set log command, debug, tun, warn, error, alert" o Remove cdefs.h, and assume an ansi compiler. o Improve all diagnostic output o Don't trap SIGSEGV o SIGHUP now terminates again (log files are controlled by syslog) o Call CloseModem() when changing devices o Fix parsing of third arg of "delete" o Make the man page a little more detailed. o Update the version number to 1.00. o Increase the predictor-1 buffer by 2 bytes. Revision Changes Path 1.9.2.7 +4 -5 src/usr.sbin/ppp/Makefile 1.1.2.3 +45 -33 src/usr.sbin/ppp/alias_cmd.c 1.5.2.2 +20 -19 src/usr.sbin/ppp/arp.c 1.1.4.1 +3 -3 src/usr.sbin/ppp/arp.h 1.5.2.2 +3 -3 src/usr.sbin/ppp/async.c 1.7.2.5 +2 -4 src/usr.sbin/ppp/auth.c 1.3.2.1 +7 -7 src/usr.sbin/ppp/auth.h 1.7.2.4 +28 -30 src/usr.sbin/ppp/ccp.c 1.3.2.1 +7 -7 src/usr.sbin/ppp/ccp.h 1.7.2.7 +11 -40 src/usr.sbin/ppp/chap.c 1.3.2.1 +2 -2 src/usr.sbin/ppp/chap.h 1.11.2.9 +28 -40 src/usr.sbin/ppp/chat.c 1.1.4.3 +3 -4 src/usr.sbin/ppp/chat.h 1.24.2.18 +452 -371 src/usr.sbin/ppp/command.c 1.2.6.1 +1 -1 src/usr.sbin/ppp/command.h 1.4.2.5 +1 -2 src/usr.sbin/ppp/defs.h 1.6.2.2 +68 -59 src/usr.sbin/ppp/filter.c 1.4.2.2 +2 -2 src/usr.sbin/ppp/filter.h 1.7.2.4 +35 -47 src/usr.sbin/ppp/fsm.c 1.5.2.1 +25 -26 src/usr.sbin/ppp/fsm.h 1.2.6.1 +1 -1 src/usr.sbin/ppp/global.h 1.9.2.4 +22 -28 src/usr.sbin/ppp/hdlc.c 1.4.2.3 +8 -8 src/usr.sbin/ppp/hdlc.h 1.9.2.10 +43 -43 src/usr.sbin/ppp/ip.c 1.1.4.1 +4 -4 src/usr.sbin/ppp/ip.h 1.9.2.11 +62 -62 src/usr.sbin/ppp/ipcp.c 1.4.2.1 +7 -9 src/usr.sbin/ppp/ipcp.h 1.10.2.9 +57 -61 src/usr.sbin/ppp/lcp.c 1.4.6.1 +7 -8 src/usr.sbin/ppp/lcp.h 1.4.6.1 +9 -10 src/usr.sbin/ppp/lcpproto.h 1.1.2.2 +8 -12 src/usr.sbin/ppp/loadalias.c 1.4.2.6 +108 -277 src/usr.sbin/ppp/log.c 1.6.2.3 +31 -72 src/usr.sbin/ppp/log.h 1.7.2.5 +27 -35 src/usr.sbin/ppp/lqr.c 1.3.2.1 +7 -7 src/usr.sbin/ppp/lqr.h 1.22.2.22 +129 -140 src/usr.sbin/ppp/main.c 1.1.4.1 +2 -2 src/usr.sbin/ppp/main.h 1.3.6.2 +22 -44 src/usr.sbin/ppp/mbuf.c 1.2.6.1 +12 -10 src/usr.sbin/ppp/mbuf.h 1.24.2.12 +76 -127 src/usr.sbin/ppp/modem.c 1.5.2.1 +17 -18 src/usr.sbin/ppp/modem.h 1.7.2.10 +43 -36 src/usr.sbin/ppp/os.c 1.3.2.1 +12 -12 src/usr.sbin/ppp/os.h 1.7.2.4 +14 -16 src/usr.sbin/ppp/pap.c 1.1.1.1.6.1 +1 -1 src/usr.sbin/ppp/pap.h 1.2.2.2 +5 -7 src/usr.sbin/ppp/passwdauth.c 1.1.2.1 +1 -1 src/usr.sbin/ppp/passwdauth.h 1.4.6.1 +1 -1 src/usr.sbin/ppp/pathnames.h 1.2.6.2 +2 -3 src/usr.sbin/ppp/phase.h 1.19.2.9 +970 -322 src/usr.sbin/ppp/ppp.8 1.7.2.3 +9 -12 src/usr.sbin/ppp/pred.c 1.1.4.1 +4 -4 src/usr.sbin/ppp/pred.h 1.9.2.4 +56 -86 src/usr.sbin/ppp/route.c 1.1.4.1 +2 -2 src/usr.sbin/ppp/route.h 1.2.2.2 +3 -3 src/usr.sbin/ppp/sig.c 1.2.2.3 +3 -3 src/usr.sbin/ppp/sig.h 1.6.2.1 +23 -30 src/usr.sbin/ppp/slcompress.c 1.3.6.2 +4 -5 src/usr.sbin/ppp/slcompress.h 1.6.2.5 +17 -23 src/usr.sbin/ppp/systems.c 1.1.4.2 +4 -4 src/usr.sbin/ppp/systems.h 1.5.6.3 +9 -8 src/usr.sbin/ppp/timeout.h 1.5.2.5 +23 -35 src/usr.sbin/ppp/timer.c 1.9.2.7 +51 -102 src/usr.sbin/ppp/vars.c 1.7.2.8 +8 -6 src/usr.sbin/ppp/vars.h 1.4.2.2 +7 -13 src/usr.sbin/ppp/vjcomp.c From owner-cvs-usrsbin Tue Jun 10 21:01:00 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA26843 for cvs-usrsbin-outgoing; Tue, 10 Jun 1997 21:01:00 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA26636; Tue, 10 Jun 1997 20:57:56 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA02080; Tue, 10 Jun 1997 20:57:54 -0700 (PDT) Date: Tue, 10 Jun 1997 20:57:54 -0700 (PDT) Message-Id: <199706110357.UAA02080@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c main.c modem.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/10 20:57:53 PDT Modified files: usr.sbin/ppp command.c main.c modem.c vars.h Log: Sort out ppp over tcp: o Allow "set var" with no args to blank var (don't req ""). o Zero VarTerm ASAP if not in interactive mode. o Never print anything to stdout in -direct mode. o Count redial when failing to open modem. o Increase device size to 40 characters (for host:port). o Remove missed "if (fd == 0) fd = 1;". o Don't give up on incoming non-terminal connections. Revision Changes Path 1.55 +15 -11 src/usr.sbin/ppp/command.c 1.61 +31 -13 src/usr.sbin/ppp/main.c 1.43 +10 -6 src/usr.sbin/ppp/modem.c 1.19 +2 -2 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Tue Jun 10 21:01:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA26867 for cvs-usrsbin-outgoing; Tue, 10 Jun 1997 21:01:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA26695; Tue, 10 Jun 1997 20:59:38 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA02133; Tue, 10 Jun 1997 20:59:35 -0700 (PDT) Date: Tue, 10 Jun 1997 20:59:35 -0700 (PDT) Message-Id: <199706110359.UAA02133@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c main.c modem.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/10 20:59:35 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp command.c main.c modem.c vars.h Log: YAMFC: Sort out ppp over tcp: o Allow "set var" with no args to blank var (don't req ""). o Zero VarTerm ASAP if not in interactive mode. o Never print anything to stdout in -direct mode. o Count redial when failing to open modem. o Increase device size to 40 characters (for host:port). o Remove missed "if (fd == 0) fd = 1;". o Don't give up on incoming non-terminal connections. Revision Changes Path 1.24.2.19 +15 -11 src/usr.sbin/ppp/command.c 1.22.2.23 +31 -13 src/usr.sbin/ppp/main.c 1.24.2.13 +10 -6 src/usr.sbin/ppp/modem.c 1.7.2.9 +2 -2 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Thu Jun 12 17:08:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29155 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 17:08:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA28918; Thu, 12 Jun 1997 17:05:18 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA15040; Thu, 12 Jun 1997 17:05:00 -0700 (PDT) Date: Thu, 12 Jun 1997 17:05:00 -0700 (PDT) Message-Id: <199706130005.RAA15040@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 17:05:00 PDT Modified files: usr.sbin/ppp ppp.8 Log: Document ppp over tcp (how to tunnel) Revision Changes Path 1.37 +106 -2 src/usr.sbin/ppp/ppp.8 From owner-cvs-usrsbin Thu Jun 12 17:08:38 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29176 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 17:08:38 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA29001; Thu, 12 Jun 1997 17:06:18 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA15076; Thu, 12 Jun 1997 17:06:00 -0700 (PDT) Date: Thu, 12 Jun 1997 17:06:00 -0700 (PDT) Message-Id: <199706130006.RAA15076@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 17:06:00 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp ppp.8 Log: YAMFC: Document ppp over tcp (how to tunnel) Revision Changes Path 1.19.2.10 +106 -2 src/usr.sbin/ppp/ppp.8 From owner-cvs-usrsbin Thu Jun 12 17:12:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29413 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 17:12:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA29309; Thu, 12 Jun 1997 17:10:13 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA15114; Thu, 12 Jun 1997 17:09:55 -0700 (PDT) Date: Thu, 12 Jun 1997 17:09:55 -0700 (PDT) Message-Id: <199706130009.RAA15114@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 17:09:55 PDT Modified files: usr.sbin/ppp command.c Log: Fix "show ?" alignment. PR: 3830 Submitted by: Josh Gilliam Revision Changes Path 1.56 +2 -2 src/usr.sbin/ppp/command.c From owner-cvs-usrsbin Thu Jun 12 17:13:52 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29488 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 17:13:52 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA29358; Thu, 12 Jun 1997 17:11:23 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA15152; Thu, 12 Jun 1997 17:11:05 -0700 (PDT) Date: Thu, 12 Jun 1997 17:11:05 -0700 (PDT) Message-Id: <199706130011.RAA15152@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 17:11:05 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp command.c Log: YAMFC: Fix "show ?" alignment. PR: 3830 Submitted by: Josh Gilliam Revision Changes Path 1.24.2.20 +2 -2 src/usr.sbin/ppp/command.c From owner-cvs-usrsbin Thu Jun 12 19:10:54 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA04021 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 19:10:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA03774; Thu, 12 Jun 1997 19:07:54 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA15571; Thu, 12 Jun 1997 19:07:35 -0700 (PDT) Date: Thu, 12 Jun 1997 19:07:35 -0700 (PDT) Message-Id: <199706130207.TAA15571@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp defs.h os.c ppp.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 19:07:35 PDT Modified files: usr.sbin/ppp defs.h os.c ppp.8 Log: Add ppp.linkdown file to compliment ppp.linkup. Submitted by: Forgotten Passed on by: Terry Dwyer 61 8 9491 5161 Also remove extraneous setuid(0) - it's only undone by the subsequent call to SelectSystem(). Revision Changes Path 1.16 +3 -3 src/usr.sbin/ppp/defs.h 1.23 +12 -8 src/usr.sbin/ppp/os.c 1.38 +15 -6 src/usr.sbin/ppp/ppp.8 From owner-cvs-usrsbin Thu Jun 12 19:11:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA04058 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 19:11:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA03895; Thu, 12 Jun 1997 19:09:18 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA15619; Thu, 12 Jun 1997 19:09:00 -0700 (PDT) Date: Thu, 12 Jun 1997 19:09:00 -0700 (PDT) Message-Id: <199706130209.TAA15619@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp defs.h os.c ppp.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 19:09:00 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp defs.h os.c ppp.8 Log: YAMFC: Add ppp.linkdown file to compliment ppp.linkup. Submitted by: Forgotten Passed on by: Terry Dwyer 61 8 9491 5161 Also remove extraneous setuid(0) - it's only undone by the subsequent call to SelectSystem(). Revision Changes Path 1.4.2.6 +3 -3 src/usr.sbin/ppp/defs.h 1.7.2.11 +12 -8 src/usr.sbin/ppp/os.c 1.19.2.11 +15 -6 src/usr.sbin/ppp/ppp.8 From owner-cvs-usrsbin Thu Jun 12 21:02:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08333 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 21:02:46 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA08158; Thu, 12 Jun 1997 20:59:56 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA16097; Thu, 12 Jun 1997 20:59:37 -0700 (PDT) Date: Thu, 12 Jun 1997 20:59:37 -0700 (PDT) Message-Id: <199706130359.UAA16097@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c ppp.8 route.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 20:59:37 PDT Modified files: usr.sbin/ppp command.c ppp.8 route.c Log: Fix "delete ...", it now only insists on one arg too. Discovered by: Rikk Salamat Revision Changes Path 1.57 +17 -14 src/usr.sbin/ppp/command.c 1.39 +2 -2 src/usr.sbin/ppp/ppp.8 1.15 +19 -5 src/usr.sbin/ppp/route.c From owner-cvs-usrsbin Thu Jun 12 21:04:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08447 for cvs-usrsbin-outgoing; Thu, 12 Jun 1997 21:04:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA08289; Thu, 12 Jun 1997 21:02:03 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA16162; Thu, 12 Jun 1997 21:01:44 -0700 (PDT) Date: Thu, 12 Jun 1997 21:01:44 -0700 (PDT) Message-Id: <199706130401.VAA16162@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp command.c ppp.8 route.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/12 21:01:44 PDT Modified files: (Branch: RELENG_2_2) usr.sbin/ppp command.c ppp.8 route.c Log: YAMFC: Fix "delete ...", it now only insists on one arg too. Discovered by: Rikk Salamat Revision Changes Path 1.24.2.21 +18 -15 src/usr.sbin/ppp/command.c 1.19.2.12 +2 -2 src/usr.sbin/ppp/ppp.8 1.9.2.5 +19 -5 src/usr.sbin/ppp/route.c From owner-cvs-usrsbin Fri Jun 13 17:23:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29131 for cvs-usrsbin-outgoing; Fri, 13 Jun 1997 17:23:56 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA29025; Fri, 13 Jun 1997 17:21:50 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA23673; Fri, 13 Jun 1997 17:21:24 -0700 (PDT) Date: Fri, 13 Jun 1997 17:21:24 -0700 (PDT) Message-Id: <199706140021.RAA23673@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp chap.c command.c lcp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/13 17:21:24 PDT Modified files: usr.sbin/ppp chap.c command.c lcp.c Log: Remove srandomdev fallback code Revision Changes Path 1.19 +2 -3 src/usr.sbin/ppp/chap.c 1.58 +3 -5 src/usr.sbin/ppp/command.c 1.24 +2 -3 src/usr.sbin/ppp/lcp.c From owner-cvs-usrsbin Fri Jun 13 17:26:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA29297 for cvs-usrsbin-outgoing; Fri, 13 Jun 1997 17:26:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA29181; Fri, 13 Jun 1997 17:24:16 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA23704; Fri, 13 Jun 1997 17:23:50 -0700 (PDT) Date: Fri, 13 Jun 1997 17:23:50 -0700 (PDT) Message-Id: <199706140023.RAA23704@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pw pw_user.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/13 17:23:50 PDT Modified files: usr.sbin/pw pw_user.c Log: Remove srandomdev fallback code Revision Changes Path 1.21 +7 -5 src/usr.sbin/pw/pw_user.c