From owner-cvs-usrsbin Sun Feb 15 14:33:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03741 for cvs-usrsbin-outgoing; Sun, 15 Feb 1998 14:33:52 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA03404; Sun, 15 Feb 1998 14:31:51 -0800 (PST) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA02160; Sun, 15 Feb 1998 14:31:41 -0800 (PST) Date: Sun, 15 Feb 1998 14:31:41 -0800 (PST) Message-Id: <199802152231.OAA02160@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pwd_mkdb pwd_mkdb.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk guido 1998/02/15 14:31:40 PST Modified files: usr.sbin/pwd_mkdb pwd_mkdb.c Log: Check return values of fprintf, fclose (this one is overdone I guess) and pw_db->close. PR: 4202 (probably, I askd the submitter) Obtained from: OpenBSD Revision Changes Path 1.22 +12 -7 src/usr.sbin/pwd_mkdb/pwd_mkdb.c From owner-cvs-usrsbin Sun Feb 15 16:01:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20234 for cvs-usrsbin-outgoing; Sun, 15 Feb 1998 16:01:43 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA20187; Sun, 15 Feb 1998 16:01:28 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA02792; Sun, 15 Feb 1998 16:01:18 -0800 (PST) Date: Sun, 15 Feb 1998 16:01:18 -0800 (PST) Message-Id: <199802160001.QAA02792@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c datalink.h Makefile bundle.c bundle.h chap.c command.c descriptor.h fsm.c ip.c lcp.c lcp.h link.c link.h lqr.c main.c main.h mbuf.c modem.c modem.h pap.c physical.c prompt.c prompt.h server.c vars.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/15 16:01:17 PST Modified files: (Branch: MP) usr.sbin/ppp Makefile bundle.c bundle.h chap.c command.c descriptor.h fsm.c ip.c lcp.c lcp.h link.c link.h lqr.c main.c main.h mbuf.c modem.c modem.h pap.c physical.c prompt.c prompt.h server.c vars.c vars.h Added files: (Branch: MP) usr.sbin/ppp datalink.c datalink.h Log: Create struct datalink. This is a type of physical link that can chat and talk LCP & CCP. A bundle contains a list of these (only one in the list for the moment). The datalink is a type of descriptor, and dials, enters LCP (& does CCP), kicks the bundle when its FSMs do something interesting and does the hangup chat script on the way down. It also handles redials and reconnects. There are lots of loose ends, and probably lots of bugs, but the data structures are getting there ! Revision Changes Path 1.36.2.7 +3 -3 src/usr.sbin/ppp/Makefile 1.1.2.9 +150 -53 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.8 +14 -4 src/usr.sbin/ppp/Attic/bundle.h 1.28.2.9 +4 -7 src/usr.sbin/ppp/chap.c 1.131.2.17 +14 -26 src/usr.sbin/ppp/command.c 1.1.2.6 +2 -1 src/usr.sbin/ppp/Attic/descriptor.h 1.27.2.10 +2 -2 src/usr.sbin/ppp/fsm.c 1.38.2.7 +2 -3 src/usr.sbin/ppp/ip.c 1.55.2.15 +2 -9 src/usr.sbin/ppp/lcp.c 1.16.2.8 +1 -2 src/usr.sbin/ppp/lcp.h 1.1.2.6 +3 -3 src/usr.sbin/ppp/Attic/link.c 1.1.2.4 +2 -2 src/usr.sbin/ppp/Attic/link.h 1.22.2.8 +3 -5 src/usr.sbin/ppp/lqr.c 1.121.2.22 +35 -230 src/usr.sbin/ppp/main.c 1.9.2.6 +1 -3 src/usr.sbin/ppp/main.h 1.13.2.5 +5 -5 src/usr.sbin/ppp/mbuf.c 1.77.2.16 +39 -33 src/usr.sbin/ppp/modem.c 1.16.2.7 +3 -2 src/usr.sbin/ppp/modem.h 1.20.2.9 +3 -5 src/usr.sbin/ppp/pap.c 1.1.2.9 +2 -2 src/usr.sbin/ppp/Attic/physical.c 1.1.2.3 +9 -4 src/usr.sbin/ppp/Attic/prompt.c 1.1.2.2 +2 -2 src/usr.sbin/ppp/Attic/prompt.h 1.16.2.6 +3 -1 src/usr.sbin/ppp/server.c 1.45.2.8 +2 -4 src/usr.sbin/ppp/vars.c 1.42.2.4 +3 -1 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Sun Feb 15 16:19:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA22313 for cvs-usrsbin-outgoing; Sun, 15 Feb 1998 16:19:24 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA22129; Sun, 15 Feb 1998 16:19:05 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA03053; Sun, 15 Feb 1998 16:18:54 -0800 (PST) Date: Sun, 15 Feb 1998 16:18:54 -0800 (PST) Message-Id: <199802160018.QAA03053@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp datalink.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/15 16:18:54 PST Modified files: (Branch: MP) usr.sbin/ppp datalink.c Log: Cosmetic: Stop a warning Revision Changes Path 1.1.2.2 +4 -3 src/usr.sbin/ppp/Attic/datalink.c From owner-cvs-usrsbin Mon Feb 16 09:18:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18799 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 09:18:01 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18267; Mon, 16 Feb 1998 09:17:13 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA01849; Mon, 16 Feb 1998 09:16:55 -0800 (PST) Date: Mon, 16 Feb 1998 09:16:55 -0800 (PST) Message-Id: <199802161716.JAA01849@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/add perform.c src/usr.sbin/pkg_install/create perform.c src/usr.sbin/pkg_install/info perform.c src/usr.sbin/pkg_install/lib lib.h pen.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1998/02/16 09:16:53 PST Modified files: usr.sbin/pkg_install/add perform.c usr.sbin/pkg_install/create perform.c usr.sbin/pkg_install/info perform.c usr.sbin/pkg_install/lib lib.h pen.c Log: Eliminate the idea of nested "playpens" entirely - it just obfuscated the code and, in at least one case, made it more dangerous to no gain. Revision Changes Path 1.49 +13 -8 src/usr.sbin/pkg_install/add/perform.c 1.41 +8 -3 src/usr.sbin/pkg_install/create/perform.c 1.24 +8 -3 src/usr.sbin/pkg_install/info/perform.c 1.26 +2 -2 src/usr.sbin/pkg_install/lib/lib.h 1.27 +15 -17 src/usr.sbin/pkg_install/lib/pen.c From owner-cvs-usrsbin Mon Feb 16 09:42:55 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25690 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 09:42:55 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA25598; Mon, 16 Feb 1998 09:42:24 -0800 (PST) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA01980; Mon, 16 Feb 1998 09:42:06 -0800 (PST) Date: Mon, 16 Feb 1998 09:42:06 -0800 (PST) Message-Id: <199802161742.JAA01980@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pkg_install/add perform.c src/usr.sbin/pkg_install/create perform.c src/usr.sbin/pkg_install/info perform.c src/usr.sbin/pkg_install/lib lib.h pen.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1998/02/16 09:42:05 PST Modified files: (Branch: RELENG_2_2) usr.sbin/pkg_install/add perform.c usr.sbin/pkg_install/create perform.c usr.sbin/pkg_install/info perform.c usr.sbin/pkg_install/lib lib.h pen.c Log: MFC: nuke them nested playpens. Revision Changes Path 1.37.2.10 +13 -8 src/usr.sbin/pkg_install/add/perform.c 1.32.2.7 +8 -3 src/usr.sbin/pkg_install/create/perform.c 1.19.2.3 +8 -3 src/usr.sbin/pkg_install/info/perform.c 1.22.2.2 +2 -2 src/usr.sbin/pkg_install/lib/lib.h 1.22.2.3 +15 -17 src/usr.sbin/pkg_install/lib/pen.c From owner-cvs-usrsbin Mon Feb 16 11:09:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24657 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 11:09:00 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24604; Mon, 16 Feb 1998 11:08:40 -0800 (PST) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02389; Mon, 16 Feb 1998 11:08:22 -0800 (PST) Date: Mon, 16 Feb 1998 11:08:22 -0800 (PST) Message-Id: <199802161908.LAA02389@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pwd_mkdb pwd_mkdb.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk guido 1998/02/16 11:08:22 PST Modified files: usr.sbin/pwd_mkdb pwd_mkdb.c Log: Apparently, if fprintf() fails, it can return any negative value Pointed out by: Bruce Revision Changes Path 1.23 +3 -3 src/usr.sbin/pwd_mkdb/pwd_mkdb.c From owner-cvs-usrsbin Mon Feb 16 11:11:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25193 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 11:11:24 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25086; Mon, 16 Feb 1998 11:11:06 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02565; Mon, 16 Feb 1998 11:10:48 -0800 (PST) Date: Mon, 16 Feb 1998 11:10:48 -0800 (PST) Message-Id: <199802161910.LAA02565@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 datalink.c datalink.h defs.h vars.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/16 11:10:48 PST Modified files: (Branch: MP) usr.sbin/ppp command.c datalink.c datalink.h defs.h vars.c vars.h Log: Move the reconnect timeout and max tries into struct datalink. Revision Changes Path 1.131.2.19 +10 -6 src/usr.sbin/ppp/command.c 1.1.2.4 +18 -7 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.3 +5 -2 src/usr.sbin/ppp/Attic/datalink.h 1.29.2.2 +2 -3 src/usr.sbin/ppp/defs.h 1.45.2.9 +3 -4 src/usr.sbin/ppp/vars.c 1.42.2.6 +1 -46 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Mon Feb 16 11:12:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25288 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 11:12:01 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25213; Mon, 16 Feb 1998 11:11:31 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02627; Mon, 16 Feb 1998 11:11:13 -0800 (PST) Date: Mon, 16 Feb 1998 11:11:13 -0800 (PST) Message-Id: <199802161911.LAA02627@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 datalink.c datalink.h defs.h vars.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/16 11:11:12 PST Modified files: (Branch: MP) usr.sbin/ppp command.c datalink.c datalink.h defs.h vars.c vars.h Log: Move the redial timeouts and max tries into struct datalink. Revision Changes Path 1.131.2.20 +18 -15 src/usr.sbin/ppp/command.c 1.1.2.5 +22 -15 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.4 +8 -4 src/usr.sbin/ppp/Attic/datalink.h 1.29.2.3 +3 -3 src/usr.sbin/ppp/defs.h 1.45.2.10 +3 -4 src/usr.sbin/ppp/vars.c 1.42.2.7 +1 -7 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Mon Feb 16 11:14:37 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26002 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 11:14:37 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25856; Mon, 16 Feb 1998 11:14:04 -0800 (PST) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02672; Mon, 16 Feb 1998 11:13:46 -0800 (PST) Date: Mon, 16 Feb 1998 11:13:46 -0800 (PST) Message-Id: <199802161913.LAA02672@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pwd_mkdb pwd_mkdb.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk guido 1998/02/16 11:13:46 PST Modified files: (Branch: RELENG_2_2) usr.sbin/pwd_mkdb pwd_mkdb.c Log: MFC: check return value from db close and fprintf(). Revision Changes Path 1.15.2.6 +12 -7 src/usr.sbin/pwd_mkdb/pwd_mkdb.c From owner-cvs-usrsbin Mon Feb 16 11:25:13 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA00274 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 11:25:13 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29683; Mon, 16 Feb 1998 11:24:00 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02491; Mon, 16 Feb 1998 11:10:07 -0800 (PST) Date: Mon, 16 Feb 1998 11:10:07 -0800 (PST) Message-Id: <199802161910.LAA02491@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c chat.c command.c datalink.c datalink.h main.c modem.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/16 11:10:06 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c chat.c command.c datalink.c datalink.h main.c modem.c vars.h Log: Move the dial, login and hangup scripts into struct datalink. Don't set these scripts in -direct mode. Always set reconnect_tries to zero for -direct mode. Revision Changes Path 1.1.2.10 +8 -2 src/usr.sbin/ppp/Attic/bundle.c 1.44.2.9 +9 -4 src/usr.sbin/ppp/chat.c 1.131.2.18 +14 -7 src/usr.sbin/ppp/command.c 1.1.2.3 +14 -10 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.2 +8 -1 src/usr.sbin/ppp/Attic/datalink.h 1.121.2.23 +3 -16 src/usr.sbin/ppp/main.c 1.77.2.17 +6 -4 src/usr.sbin/ppp/modem.c 1.42.2.5 +1 -7 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Mon Feb 16 17:07:36 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24893 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 17:07:36 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24515; Mon, 16 Feb 1998 17:06:09 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA04004; Mon, 16 Feb 1998 17:05:48 -0800 (PST) Date: Mon, 16 Feb 1998 17:05:48 -0800 (PST) Message-Id: <199802170105.RAA04004@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c command.c datalink.c datalink.h main.c prompt.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/16 17:05:48 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c command.c datalink.c datalink.h main.c prompt.c Log: Sort out (fix) the `term' command. datalink_Up() can now be told to skip the dial/login/hangup scripts and can be told whether to enter packet mode when entering the DATALINK_OPENED state. Revision Changes Path 1.1.2.11 +10 -3 src/usr.sbin/ppp/Attic/bundle.c 1.131.2.21 +6 -5 src/usr.sbin/ppp/command.c 1.1.2.6 +50 -31 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.5 +4 -3 src/usr.sbin/ppp/Attic/datalink.h 1.121.2.24 +2 -5 src/usr.sbin/ppp/main.c 1.1.2.4 +21 -1 src/usr.sbin/ppp/Attic/prompt.c From owner-cvs-usrsbin Mon Feb 16 17:25:03 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA28441 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 17:25:03 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA28051; Mon, 16 Feb 1998 17:24:01 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA03934; Mon, 16 Feb 1998 17:05:24 -0800 (PST) Date: Mon, 16 Feb 1998 17:05:24 -0800 (PST) Message-Id: <199802170105.RAA03934@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c vars.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/16 17:05:23 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c vars.c vars.h Log: Remove some unused stuff from pppVars. Revision Changes Path 1.77.2.18 +2 -2 src/usr.sbin/ppp/modem.c 1.45.2.11 +3 -3 src/usr.sbin/ppp/vars.c 1.42.2.8 +1 -11 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Mon Feb 16 23:30:06 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA25125 for cvs-usrsbin-outgoing; Mon, 16 Feb 1998 23:30:06 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA25036; Mon, 16 Feb 1998 23:29:53 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA05396; Mon, 16 Feb 1998 23:29:32 -0800 (PST) Date: Mon, 16 Feb 1998 23:29:32 -0800 (PST) Message-Id: <199802170729.XAA05396@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/doc xntpd.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk charnier 1998/02/16 23:29:31 PST Modified files: (Branch: RELENG_2_2) usr.sbin/xntpd/doc xntpd.8 Log: Typos. Revision Changes Path 1.1.1.5.8.4 +10 -10 src/usr.sbin/xntpd/doc/xntpd.8 From owner-cvs-usrsbin Tue Feb 17 11:58:18 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07307 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:58:18 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06299; Tue, 17 Feb 1998 11:54:42 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02544; Tue, 17 Feb 1998 11:28:15 -0800 (PST) Date: Tue, 17 Feb 1998 11:28:15 -0800 (PST) Message-Id: <199802171928.LAA02544@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 prompt.c prompt.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:28:15 PST Modified files: (Branch: MP) usr.sbin/ppp command.c prompt.c prompt.h Log: Keep a handle on our current ``term'' in struct prompt so that the `term' command works on the correct link. Revision Changes Path 1.131.2.23 +2 -2 src/usr.sbin/ppp/command.c 1.1.2.6 +11 -15 src/usr.sbin/ppp/Attic/prompt.c 1.1.2.3 +3 -3 src/usr.sbin/ppp/Attic/prompt.h From owner-cvs-usrsbin Tue Feb 17 12:15:28 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07061 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:57:51 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06245; Tue, 17 Feb 1998 11:54:20 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02748; Tue, 17 Feb 1998 11:29:16 -0800 (PST) Date: Tue, 17 Feb 1998 11:29:16 -0800 (PST) Message-Id: <199802171929.LAA02748@freefall.freebsd.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-usrsbin@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp datalink.c lcp.c lcp.h Sender: owner-cvs-usrsbin@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:29:16 PST Modified files: (Branch: MP) usr.sbin/ppp datalink.c lcp.c lcp.h Log: Merge LcpOpen functionality into datalink_LoginDone Revision Changes Path 1.1.2.10 +3 -6 src/usr.sbin/ppp/Attic/datalink.c 1.55.2.16 +1 -14 src/usr.sbin/ppp/lcp.c 1.16.2.9 +1 -2 src/usr.sbin/ppp/lcp.h From owner-cvs-usrsbin Tue Feb 17 12:16:34 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07154 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:58:01 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06274; Tue, 17 Feb 1998 11:54:33 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02706; Tue, 17 Feb 1998 11:29:05 -0800 (PST) Date: Tue, 17 Feb 1998 11:29:05 -0800 (PST) Message-Id: <199802171929.LAA02706@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp modem.c physical.c physical.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:29:05 PST Modified files: (Branch: MP) usr.sbin/ppp modem.c physical.c physical.h Log: Cosmetic: Group configuration items in struct physical. Revision Changes Path 1.77.2.22 +15 -15 src/usr.sbin/ppp/modem.c 1.1.2.10 +10 -10 src/usr.sbin/ppp/Attic/physical.c 1.1.2.9 +10 -6 src/usr.sbin/ppp/Attic/physical.h From owner-cvs-usrsbin Tue Feb 17 12:17:17 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07197 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:58:05 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06319; Tue, 17 Feb 1998 11:54:57 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02664; Tue, 17 Feb 1998 11:28:56 -0800 (PST) Date: Tue, 17 Feb 1998 11:28:56 -0800 (PST) Message-Id: <199802171928.LAA02664@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 datalink.c datalink.h modem.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:28:51 PST Modified files: (Branch: MP) usr.sbin/ppp command.c datalink.c datalink.h modem.c Log: Cosmetic: Group configuration items in struct datalink. Revision Changes Path 1.131.2.25 +23 -23 src/usr.sbin/ppp/command.c 1.1.2.9 +28 -27 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.7 +15 -10 src/usr.sbin/ppp/Attic/datalink.h 1.77.2.21 +4 -4 src/usr.sbin/ppp/modem.c From owner-cvs-usrsbin Tue Feb 17 12:18:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07240 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:58:08 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06349; Tue, 17 Feb 1998 11:55:11 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02502; Tue, 17 Feb 1998 11:28:05 -0800 (PST) Date: Tue, 17 Feb 1998 11:28:05 -0800 (PST) Message-Id: <199802171928.LAA02502@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c command.h datalink.c modem.c modem.h prompt.c vars.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:28:04 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c bundle.h command.c command.h datalink.c modem.c modem.h prompt.c vars.h Log: Introduce the ``link'' command for controlling individual links. Revision Changes Path 1.1.2.12 +18 -3 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.9 +2 -1 src/usr.sbin/ppp/Attic/bundle.h 1.131.2.22 +131 -94 src/usr.sbin/ppp/command.c 1.12.2.4 +4 -4 src/usr.sbin/ppp/command.h 1.1.2.7 +2 -2 src/usr.sbin/ppp/Attic/datalink.c 1.77.2.19 +40 -30 src/usr.sbin/ppp/modem.c 1.16.2.8 +2 -1 src/usr.sbin/ppp/modem.h 1.1.2.5 +10 -13 src/usr.sbin/ppp/Attic/prompt.c 1.42.2.9 +3 -1 src/usr.sbin/ppp/vars.h From owner-cvs-usrsbin Tue Feb 17 12:18:12 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07219 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 11:58:07 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA06389; Tue, 17 Feb 1998 11:55:25 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA02616; Tue, 17 Feb 1998 11:28:38 -0800 (PST) Date: Tue, 17 Feb 1998 11:28:38 -0800 (PST) Message-Id: <199802171928.LAA02616@freefall.freebsd.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-usrsbin@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c command.c datalink.c datalink.h main.c main.h modem.c prompt.c Sender: owner-cvs-usrsbin@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 11:28:38 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c command.c datalink.c datalink.h main.c main.h modem.c prompt.c Log: Add datalink state DATALINK_READY to indicate when the datalink is available, but LCP hasn't yet been started. We get to this state in ``term'' mode. Remove PacketMode(). LCP startup and shutdown is now controlled by the datalink. Add ``show links'' command. Make ``close'' capable of running with and without a context. Make ``down'' require a context. Make ``set parity'' and ``set rtscts'' use the correct context. Revision Changes Path 1.1.2.13 +8 -5 src/usr.sbin/ppp/Attic/bundle.c 1.131.2.24 +8 -8 src/usr.sbin/ppp/command.c 1.1.2.8 +121 -37 src/usr.sbin/ppp/Attic/datalink.c 1.1.2.6 +4 -2 src/usr.sbin/ppp/Attic/datalink.h 1.121.2.25 +1 -18 src/usr.sbin/ppp/main.c 1.9.2.7 +1 -2 src/usr.sbin/ppp/main.h 1.77.2.20 +9 -2 src/usr.sbin/ppp/modem.c 1.1.2.7 +28 -20 src/usr.sbin/ppp/Attic/prompt.c From owner-cvs-usrsbin Tue Feb 17 16:30:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA00270 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 16:30:16 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29909; Tue, 17 Feb 1998 16:28:23 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04383; Tue, 17 Feb 1998 16:27:53 -0800 (PST) Date: Tue, 17 Feb 1998 16:27:53 -0800 (PST) Message-Id: <199802180027.QAA04383@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c datalink.c main.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 16:27:52 PST Modified files: (Branch: MP) usr.sbin/ppp bundle.c datalink.c main.c Log: Close the link(s) properly from bundle_Close() even if we're in PHASE_DEAD already. Don't modem_Raw() 'till we're in packet mode. Revision Changes Path 1.1.2.14 +10 -7 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.11 +16 -17 src/usr.sbin/ppp/Attic/datalink.c 1.121.2.26 +2 -1 src/usr.sbin/ppp/main.c From owner-cvs-usrsbin Tue Feb 17 16:31:26 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA00343 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 16:31:26 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA29937; Tue, 17 Feb 1998 16:28:42 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04414; Tue, 17 Feb 1998 16:28:08 -0800 (PST) Date: Tue, 17 Feb 1998 16:28:08 -0800 (PST) Message-Id: <199802180028.QAA04414@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp chat.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/17 16:28:08 PST Modified files: (Branch: MP) usr.sbin/ppp chat.c Log: Fix empty string skipping when chatting. Revision Changes Path 1.44.2.10 +4 -2 src/usr.sbin/ppp/chat.c From owner-cvs-usrsbin Tue Feb 17 20:13:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA10951 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 20:13:53 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA10743; Tue, 17 Feb 1998 20:12:21 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06653; Tue, 17 Feb 1998 20:11:50 -0800 (PST) Date: Tue, 17 Feb 1998 20:11:50 -0800 (PST) Message-Id: <199802180411.UAA06653@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/17 20:11:50 PST Modified files: usr.sbin/ypserv Makefile.yp Log: Doh! Replace backslash that got eaten by gremlins in the last commit. Revision Changes Path 1.22 +2 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-usrsbin Tue Feb 17 20:14:59 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11118 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 20:14:59 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA10911; Tue, 17 Feb 1998 20:13:26 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06688; Tue, 17 Feb 1998 20:12:53 -0800 (PST) Date: Tue, 17 Feb 1998 20:12:53 -0800 (PST) Message-Id: <199802180412.UAA06688@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/17 20:12:53 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ypserv Makefile.yp Log: MFC: put back missing backslash Revision Changes Path 1.13.2.5 +2 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-usrsbin Tue Feb 17 20:17:18 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11526 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 20:17:18 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11236; Tue, 17 Feb 1998 20:15:38 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06747; Tue, 17 Feb 1998 20:15:05 -0800 (PST) Date: Tue, 17 Feb 1998 20:15:05 -0800 (PST) Message-Id: <199802180415.UAA06747@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config config.8 config.h config.y main.c mkmakefile.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk eivind 1998/02/17 20:15:05 PST Modified files: usr.sbin/config config.8 config.h config.y main.c mkmakefile.c Log: Make '-n' the default, and introduce a new flag '-r' to get old behaviour. Also indicate which option(s) are unknown if there are any old-style options. Revision Changes Path 1.10 +6 -9 src/usr.sbin/config/config.8 1.17 +3 -0 src/usr.sbin/config/config.h 1.21 +3 -0 src/usr.sbin/config/config.y 1.20 +9 -13 src/usr.sbin/config/main.c 1.26 +12 -4 src/usr.sbin/config/mkmakefile.c From owner-cvs-usrsbin Tue Feb 17 21:15:10 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20302 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 21:15:10 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from ns.mt.sri.com (sri-gw.MT.net [206.127.105.141]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA20260; Tue, 17 Feb 1998 21:14:39 -0800 (PST) (envelope-from nate@mt.sri.com) Received: from mt.sri.com (rocky.mt.sri.com [206.127.76.100]) by ns.mt.sri.com (8.8.8/8.8.8) with SMTP id VAA01518; Tue, 17 Feb 1998 21:27:01 -0700 (MST) (envelope-from nate@rocky.mt.sri.com) Received: by mt.sri.com (SMI-8.6/SMI-SVR4) id VAA02314; Tue, 17 Feb 1998 21:27:00 -0700 Date: Tue, 17 Feb 1998 21:27:00 -0700 Message-Id: <199802180427.VAA02314@mt.sri.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Eivind Eklund Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/config config.8 config.h config.y main.c mkmakefile.c In-Reply-To: <199802180415.UAA06747@freefall.freebsd.org> References: <199802180415.UAA06747@freefall.freebsd.org> X-Mailer: VM 6.29 under 19.15 XEmacs Lucid Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified files: > usr.sbin/config config.8 config.h config.y main.c > mkmakefile.c > Log: > Make '-n' the default Yay!!!! Nate From owner-cvs-usrsbin Tue Feb 17 23:26:55 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA07539 for cvs-usrsbin-outgoing; Tue, 17 Feb 1998 23:26:55 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA07510; Tue, 17 Feb 1998 23:26:41 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA09330; Tue, 17 Feb 1998 23:26:11 -0800 (PST) Date: Tue, 17 Feb 1998 23:26:11 -0800 (PST) Message-Id: <199802180726.XAA09330@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/doc xntpdc.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk charnier 1998/02/17 23:26:10 PST Modified files: (Branch: RELENG_2_2) usr.sbin/xntpd/doc xntpdc.8 Log: Typos. Revision Changes Path 1.1.1.4.8.1 +3 -3 src/usr.sbin/xntpd/doc/xntpdc.8 From owner-cvs-usrsbin Wed Feb 18 05:47:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA09655 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 05:47:16 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA09608; Wed, 18 Feb 1998 05:46:56 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA13842; Wed, 18 Feb 1998 05:46:23 -0800 (PST) Date: Wed, 18 Feb 1998 05:46:23 -0800 (PST) Message-Id: <199802181346.FAA13842@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c src/usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/02/18 05:46:23 PST Removed files: usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c Log: Remove qcam support programs. Submitted by: pst From owner-cvs-usrsbin Wed Feb 18 05:54:25 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA10494 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 05:54:25 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA10409; Wed, 18 Feb 1998 05:54:14 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA13879; Wed, 18 Feb 1998 05:48:38 -0800 (PST) Date: Wed, 18 Feb 1998 05:48:38 -0800 (PST) Message-Id: <199802181348.FAA13879@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin Makefile Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/02/18 05:48:38 PST Modified files: usr.sbin Makefile Log: Disconnect (nonexistent) qcamcontrol Submitted by: pst Revision Changes Path 1.115 +3 -3 src/usr.sbin/Makefile From owner-cvs-usrsbin Wed Feb 18 11:38:30 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21557 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 11:38:30 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA21018; Wed, 18 Feb 1998 11:36:37 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09154; Wed, 18 Feb 1998 11:36:02 -0800 (PST) Date: Wed, 18 Feb 1998 11:36:02 -0800 (PST) Message-Id: <199802181936.LAA09154@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 deflate.c fsm.c hdlc.c hdlc.h lcp.c link.c physical.c physical.h tun.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 11:36:02 PST Modified files: (Branch: MP) usr.sbin/ppp command.c deflate.c fsm.c hdlc.c hdlc.h lcp.c link.c physical.c physical.h tun.c Log: o Create `struct hdlc' - a part of struct physical. o Move our LCP report timer into struct hdlc - it's really a hdlc timer (fcs errors etc). o Make `show hdlc' require context and make the output more friendly. o Remove all non-const globals from hdlc.c o Output peer-rejected protocols by name - not just ones that we reject. Revision Changes Path 1.131.2.27 +2 -2 src/usr.sbin/ppp/command.c 1.6.4.5 +2 -2 src/usr.sbin/ppp/deflate.c 1.27.2.11 +3 -2 src/usr.sbin/ppp/fsm.c 1.28.2.11 +70 -52 src/usr.sbin/ppp/hdlc.c 1.14.2.6 +25 -4 src/usr.sbin/ppp/hdlc.h 1.55.2.17 +6 -27 src/usr.sbin/ppp/lcp.c 1.1.2.7 +2 -2 src/usr.sbin/ppp/Attic/link.c 1.1.2.11 +2 -2 src/usr.sbin/ppp/Attic/physical.c 1.1.2.10 +2 -1 src/usr.sbin/ppp/Attic/physical.h 1.6.4.2 +2 -1 src/usr.sbin/ppp/tun.c From owner-cvs-usrsbin Wed Feb 18 11:38:28 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA21547 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 11:38:28 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA21080; Wed, 18 Feb 1998 11:36:51 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09196; Wed, 18 Feb 1998 11:36:14 -0800 (PST) Date: Wed, 18 Feb 1998 11:36:14 -0800 (PST) Message-Id: <199802181936.LAA09196@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c ccp.h hdlc.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 11:36:14 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c ccp.h hdlc.c Log: o Fix an obscure memory leak (if the peer sends PROTO_COMPD packets when we haven't agreed a protocol). o Move the complication of passing incoming data to the PROTO_COMPD input or dictionary setup routine into ccp.c Revision Changes Path 1.30.2.10 +21 -18 src/usr.sbin/ppp/ccp.c 1.14.2.9 +2 -3 src/usr.sbin/ppp/ccp.h 1.28.2.12 +4 -11 src/usr.sbin/ppp/hdlc.c From owner-cvs-usrsbin Wed Feb 18 12:11:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA00818 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:11:01 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA00620; Wed, 18 Feb 1998 12:10:21 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id MAA10889; Wed, 18 Feb 1998 12:03:56 -0800 (PST) Received: from UNKNOWN(), claiming to be "current1.whistle.com" via SMTP by alpo.whistle.com, id smtpd010885; Wed Feb 18 12:03:46 1998 Message-ID: <34EB3DB8.7A79CB24@whistle.com> Date: Wed, 18 Feb 1998 11:59:52 -0800 From: Julian Elischer Organization: Whistle Communications X-Mailer: Mozilla 3.0Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: Michael Smith CC: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c src/usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c References: <199802181346.FAA13842@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Michael Smith wrote: > > msmith 1998/02/18 05:46:23 PST > > Removed files: > usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c > usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c > Log: > Remove qcam support programs. > Submitted by: pst Gee thanks.. I was using that.. From owner-cvs-usrsbin Wed Feb 18 12:19:19 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03033 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:19:19 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02924; Wed, 18 Feb 1998 12:18:57 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id MAA10467; Wed, 18 Feb 1998 12:18:37 -0800 (PST) To: Julian Elischer cc: Michael Smith , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: Re: cvs commit: src/usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c src/usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c In-reply-to: Your message of "Wed, 18 Feb 1998 11:59:52 PST." <34EB3DB8.7A79CB24@whistle.com> Date: Wed, 18 Feb 1998 12:18:37 -0800 Message-ID: <10464.887833117@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Michael Smith wrote: > > > > msmith 1998/02/18 05:46:23 PST > > > > Removed files: > > usr.sbin/qcamcontrol Makefile qcamcontrol.1 qcamcontrol.c > > usr.sbin/qcamcontrol/qcamtime Makefile qcamtime.c > > Log: > > Remove qcam support programs. > > Submitted by: pst > > Gee thanks.. I was using that.. Not with a color quickcam (now ubiquitous) you weren't. :-) Care to fix it up there at Whistle and make it work all the way? I'm sure there'd be a strong argument to bring it back in that case, but when even its author has disowned it one has to wonder about its future even if we brought it back right this minute. Jordan From owner-cvs-usrsbin Wed Feb 18 12:43:17 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10140 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:43:17 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09292; Wed, 18 Feb 1998 12:39:46 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10159; Wed, 18 Feb 1998 12:39:11 -0800 (PST) Date: Wed, 18 Feb 1998 12:39:11 -0800 (PST) Message-Id: <199802182039.MAA10159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp server.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 12:39:10 PST Modified files: (Branch: MP) usr.sbin/ppp server.c Log: LogWARN rather than LogERROR when we can't create our diagnostic socket. Revision Changes Path 1.16.2.7 +5 -5 src/usr.sbin/ppp/server.c From owner-cvs-usrsbin Wed Feb 18 12:44:23 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23594 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 11:45:01 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22113; Wed, 18 Feb 1998 11:40:08 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09266; Wed, 18 Feb 1998 11:39:30 -0800 (PST) Date: Wed, 18 Feb 1998 11:39:30 -0800 (PST) Message-Id: <199802181939.LAA09266@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 11:39:30 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ppp ccp.c Log: MFC: Don't leak memory when the peer sends PROTO_COMPD packets without negotiating compression first. Revision Changes Path 1.7.2.9 +2 -2 src/usr.sbin/ppp/ccp.c From owner-cvs-usrsbin Wed Feb 18 12:44:51 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10422 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:44:51 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA09840; Wed, 18 Feb 1998 12:42:17 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10234; Wed, 18 Feb 1998 12:41:38 -0800 (PST) Date: Wed, 18 Feb 1998 12:41:38 -0800 (PST) Message-Id: <199802182041.MAA10234@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp server.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 12:41:37 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ppp server.c Log: MFC: LogWARN rather than LogERROR when we can't create our diagnostic socket. Revision Changes Path 1.1.2.7 +5 -5 src/usr.sbin/ppp/server.c From owner-cvs-usrsbin Wed Feb 18 12:56:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13022 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:56:00 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12601; Wed, 18 Feb 1998 12:54:19 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10201; Wed, 18 Feb 1998 12:40:35 -0800 (PST) Date: Wed, 18 Feb 1998 12:40:35 -0800 (PST) Message-Id: <199802182040.MAA10201@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp server.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 12:40:35 PST Modified files: usr.sbin/ppp server.c Log: MFMP: LogWARN rather than LogERROR when we can't create our diagnostic socket. Revision Changes Path 1.17 +5 -5 src/usr.sbin/ppp/server.c From owner-cvs-usrsbin Wed Feb 18 12:56:02 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13024 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:56:02 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12642; Wed, 18 Feb 1998 12:54:35 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09070; Wed, 18 Feb 1998 11:35:25 -0800 (PST) Date: Wed, 18 Feb 1998 11:35:25 -0800 (PST) Message-Id: <199802181935.LAA09070@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp async.c async.h command.c hdlc.c hdlc.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 11:35:24 PST Modified files: (Branch: MP) usr.sbin/ppp async.c async.h command.c hdlc.c hdlc.h Log: Make ``show escape'' require context. De-globalize EscMap[]. Revision Changes Path 1.15.2.7 +2 -2 src/usr.sbin/ppp/async.c 1.2.4.6 +5 -1 src/usr.sbin/ppp/async.h 1.131.2.26 +13 -10 src/usr.sbin/ppp/command.c 1.28.2.10 +1 -3 src/usr.sbin/ppp/hdlc.c 1.14.2.5 +1 -3 src/usr.sbin/ppp/hdlc.h From owner-cvs-usrsbin Wed Feb 18 12:56:14 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13060 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 12:56:14 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12632; Wed, 18 Feb 1998 12:54:30 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09232; Wed, 18 Feb 1998 11:38:44 -0800 (PST) Date: Wed, 18 Feb 1998 11:38:44 -0800 (PST) Message-Id: <199802181938.LAA09232@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 11:38:44 PST Modified files: usr.sbin/ppp ccp.c Log: Don't leak memory when the peer sends PROTO_COMPD packets without negotiating compression first. Revision Changes Path 1.31 +2 -2 src/usr.sbin/ppp/ccp.c From owner-cvs-usrsbin Wed Feb 18 16:46:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24283 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 16:46:53 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24197; Wed, 18 Feb 1998 16:46:14 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA12281; Wed, 18 Feb 1998 16:45:35 -0800 (PST) Date: Wed, 18 Feb 1998 16:45:35 -0800 (PST) Message-Id: <199802190045.QAA12281@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config main.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk eivind 1998/02/18 16:45:34 PST Modified files: usr.sbin/config main.c Log: Re-introduce '-n' - now a no-op for backwards compatibility only. Requested by: David Quattlebaum Revision Changes Path 1.21 +5 -2 src/usr.sbin/config/main.c From owner-cvs-usrsbin Wed Feb 18 16:54:03 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25542 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 16:54:03 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25252; Wed, 18 Feb 1998 16:52:28 -0800 (PST) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA12345; Wed, 18 Feb 1998 16:51:51 -0800 (PST) Date: Wed, 18 Feb 1998 16:51:51 -0800 (PST) Message-Id: <199802190051.QAA12345@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/config Makefile config.h mkmakefile.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk eivind 1998/02/18 16:51:51 PST Modified files: usr.sbin/config Makefile config.h mkmakefile.c Log: Style police service brought to you by: bde Revision Changes Path 1.16 +0 -3 src/usr.sbin/config/Makefile 1.18 +2 -2 src/usr.sbin/config/config.h 1.27 +5 -6 src/usr.sbin/config/mkmakefile.c From owner-cvs-usrsbin Wed Feb 18 18:13:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA10820 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 18:13:07 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09917; Wed, 18 Feb 1998 18:09:33 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA12629; Wed, 18 Feb 1998 18:08:56 -0800 (PST) Date: Wed, 18 Feb 1998 18:08:56 -0800 (PST) Message-Id: <199802190208.SAA12629@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 id.c id.h modem.c pap.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 18:08:55 PST Modified files: (Branch: MP) usr.sbin/ppp chap.c id.c id.h modem.c pap.c Log: Allow 8 character login names. Pointed out by: Forgotten Do the login()/logwtmp()/logout() as id 0. Revision Changes Path 1.28.2.10 +4 -5 src/usr.sbin/ppp/chap.c 1.6.4.2 +41 -6 src/usr.sbin/ppp/id.c 1.3.4.1 +5 -1 src/usr.sbin/ppp/id.h 1.77.2.23 +3 -10 src/usr.sbin/ppp/modem.c 1.20.2.10 +4 -5 src/usr.sbin/ppp/pap.c From owner-cvs-usrsbin Wed Feb 18 18:15:29 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11288 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 18:15:29 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10342; Wed, 18 Feb 1998 18:10:56 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA12688; Wed, 18 Feb 1998 18:10:14 -0800 (PST) Date: Wed, 18 Feb 1998 18:10:14 -0800 (PST) Message-Id: <199802190210.SAA12688@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 id.c id.h modem.c pap.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 18:10:14 PST Modified files: usr.sbin/ppp chap.c id.c id.h modem.c pap.c Log: MFMP: Allow 8 character login names. Do the login()/logwtmp()/logout() as id 0. Revision Changes Path 1.29 +4 -5 src/usr.sbin/ppp/chap.c 1.7 +41 -6 src/usr.sbin/ppp/id.c 1.4 +5 -1 src/usr.sbin/ppp/id.h 1.78 +3 -10 src/usr.sbin/ppp/modem.c 1.21 +4 -5 src/usr.sbin/ppp/pap.c From owner-cvs-usrsbin Wed Feb 18 18:15:30 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA11301 for cvs-usrsbin-outgoing; Wed, 18 Feb 1998 18:15:30 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA10502; Wed, 18 Feb 1998 18:11:49 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA12745; Wed, 18 Feb 1998 18:11:08 -0800 (PST) Date: Wed, 18 Feb 1998 18:11:08 -0800 (PST) Message-Id: <199802190211.SAA12745@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 id.c id.h modem.c pap.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/18 18:11:08 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ppp chap.c id.c id.h modem.c pap.c Log: MFC: Allow 8 character login names. Do the login()/logwtmp()/logout() as id 0. Revision Changes Path 1.7.2.11 +4 -5 src/usr.sbin/ppp/chap.c 1.6.2.2 +41 -6 src/usr.sbin/ppp/id.c 1.3.2.2 +5 -1 src/usr.sbin/ppp/id.h 1.24.2.30 +3 -10 src/usr.sbin/ppp/modem.c 1.7.2.10 +4 -5 src/usr.sbin/ppp/pap.c From owner-cvs-usrsbin Thu Feb 19 00:07:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25617 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 00:07:00 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25468; Thu, 19 Feb 1998 00:06:28 -0800 (PST) (envelope-from charnier@FreeBSD.org) From: Philippe Charnier Received: (from charnier@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA14890; Thu, 19 Feb 1998 00:05:49 -0800 (PST) Date: Thu, 19 Feb 1998 00:05:49 -0800 (PST) Message-Id: <199802190805.AAA14890@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/xntpd/doc ntpdate.8 ntpq.8 ntptrace.8 xntpd.8 xntpdc.8 Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk charnier 1998/02/19 00:05:48 PST Modified files: usr.sbin/xntpd/doc ntpdate.8 ntpq.8 ntptrace.8 xntpd.8 xntpdc.8 Log: Convert to mdoc + typos. Revision Changes Path 1.4 +73 -120 src/usr.sbin/xntpd/doc/ntpdate.8 1.5 +266 -349 src/usr.sbin/xntpd/doc/ntpq.8 1.2 +48 -87 src/usr.sbin/xntpd/doc/ntptrace.8 1.5 +579 -612 src/usr.sbin/xntpd/doc/xntpd.8 1.3 +439 -498 src/usr.sbin/xntpd/doc/xntpdc.8 From owner-cvs-usrsbin Thu Feb 19 00:11:19 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26278 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 00:11:19 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA26227; Thu, 19 Feb 1998 00:11:13 -0800 (PST) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15007; Thu, 19 Feb 1998 00:10:35 -0800 (PST) Date: Thu, 19 Feb 1998 00:10:35 -0800 (PST) Message-Id: <199802190810.AAA15007@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pwd_mkdb pwd_mkdb.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk guido 1998/02/19 00:10:34 PST Modified files: (Branch: RELENG_2_2) usr.sbin/pwd_mkdb pwd_mkdb.c Log: Argh: fix an if statement that caused the old passwd not be rebuild. Pointed out by: "Julie M. Juracich" Revision Changes Path 1.15.2.7 +3 -3 src/usr.sbin/pwd_mkdb/pwd_mkdb.c From owner-cvs-usrsbin Thu Feb 19 00:13:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA26557 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 00:13:00 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA26495; Thu, 19 Feb 1998 00:12:54 -0800 (PST) (envelope-from guido@FreeBSD.org) From: Guido van Rooij Received: (from guido@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA15041; Thu, 19 Feb 1998 00:12:15 -0800 (PST) Date: Thu, 19 Feb 1998 00:12:15 -0800 (PST) Message-Id: <199802190812.AAA15041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/pwd_mkdb pwd_mkdb.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk guido 1998/02/19 00:12:15 PST Modified files: usr.sbin/pwd_mkdb pwd_mkdb.c Log: Reenable building of /etc/passwd. Pointed out by: "Julie M. Juracich" Revision Changes Path 1.24 +3 -3 src/usr.sbin/pwd_mkdb/pwd_mkdb.c From owner-cvs-usrsbin Thu Feb 19 11:57:37 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA13613 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 11:57:37 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA13572; Thu, 19 Feb 1998 11:57:27 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12781; Thu, 19 Feb 1998 11:56:41 -0800 (PST) Date: Thu, 19 Feb 1998 11:56:41 -0800 (PST) Message-Id: <199802191956.LAA12781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp lcp.h Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/19 11:56:41 PST Modified files: (Branch: MP) usr.sbin/ppp lcp.h Log: Remove forgotten lcp report timer. Revision Changes Path 1.16.2.10 +1 -2 src/usr.sbin/ppp/lcp.h From owner-cvs-usrsbin Thu Feb 19 12:24:37 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA15936 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 12:24:37 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA15844; Thu, 19 Feb 1998 12:24:25 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA12838; Thu, 19 Feb 1998 11:57:04 -0800 (PST) Date: Thu, 19 Feb 1998 11:57:04 -0800 (PST) Message-Id: <199802191957.LAA12838@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/19 11:57:03 PST Modified files: (Branch: MP) usr.sbin/ppp ccp.c fsm.c fsm.h ipcp.c lcp.c Log: Move some FSM initialisation into FsmInit(). Revision Changes Path 1.30.2.11 +2 -3 src/usr.sbin/ppp/ccp.c 1.27.2.12 +3 -2 src/usr.sbin/ppp/fsm.c 1.16.2.6 +2 -2 src/usr.sbin/ppp/fsm.h 1.50.2.14 +2 -3 src/usr.sbin/ppp/ipcp.c 1.55.2.18 +2 -3 src/usr.sbin/ppp/lcp.c From owner-cvs-usrsbin Thu Feb 19 20:01:50 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04167 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 20:01:50 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04033; Thu, 19 Feb 1998 20:01:35 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14852; Thu, 19 Feb 1998 20:00:49 -0800 (PST) Date: Thu, 19 Feb 1998 20:00:49 -0800 (PST) Message-Id: <199802200400.UAA14852@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/19 20:00:49 PST Modified files: usr.sbin/ypserv Makefile.yp Log: Arghhh.... another missing backslash. Yes, I feel stupid. Revision Changes Path 1.23 +2 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-usrsbin Thu Feb 19 20:04:02 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04505 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 20:04:02 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04373; Thu, 19 Feb 1998 20:02:53 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA14890; Thu, 19 Feb 1998 20:02:06 -0800 (PST) Date: Thu, 19 Feb 1998 20:02:06 -0800 (PST) Message-Id: <199802200402.UAA14890@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/19 20:02:06 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ypserv Makefile.yp Log: MFC: another (and hopefully last) missing backslash Revision Changes Path 1.13.2.6 +2 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-usrsbin Thu Feb 19 23:18:56 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA00888 for cvs-usrsbin-outgoing; Thu, 19 Feb 1998 23:18:56 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA00831; Thu, 19 Feb 1998 23:18:36 -0800 (PST) (envelope-from hosokawa@FreeBSD.org) From: Tatsumi Hosokawa Received: (from hosokawa@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA17414; Thu, 19 Feb 1998 23:17:49 -0800 (PST) Date: Thu, 19 Feb 1998 23:17:49 -0800 (PST) Message-Id: <199802200717.XAA17414@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/apm apm.8 apm.c src/usr.sbin/apmconf apmconf.8 apmconf.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hosokawa 1998/02/19 23:17:49 PST Modified files: usr.sbin/apm apm.8 apm.c usr.sbin/apmconf apmconf.8 apmconf.c Log: Updated my e-mail addresses. Revision Changes Path 1.8 +2 -2 src/usr.sbin/apm/apm.8 1.13 +2 -2 src/usr.sbin/apm/apm.c 1.3 +2 -4 src/usr.sbin/apmconf/apmconf.8 1.8 +2 -4 src/usr.sbin/apmconf/apmconf.c From owner-cvs-usrsbin Fri Feb 20 07:46:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08715 for cvs-usrsbin-outgoing; Fri, 20 Feb 1998 07:46:43 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA07775; Fri, 20 Feb 1998 07:42:58 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA13761; Fri, 20 Feb 1998 07:42:08 -0800 (PST) Date: Fri, 20 Feb 1998 07:42:08 -0800 (PST) Message-Id: <199802201542.HAA13761@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/natd HISTORY Makefile icmp.c natd.8 natd.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/20 07:42:08 PST Modified files: (Branch: RELENG_2_2) usr.sbin/natd HISTORY Makefile icmp.c natd.8 natd.c Log: Update to version 1.11: PR: 5802 Revision Changes Path 1.1.2.3 +5 -0 src/usr.sbin/natd/HISTORY 1.1.1.1.2.2 +0 -0 src/usr.sbin/natd/Makefile 1.2.2.2 +12 -0 src/usr.sbin/natd/icmp.c 1.4.2.7 +1 -1 src/usr.sbin/natd/natd.8 1.2.2.5 +67 -63 src/usr.sbin/natd/natd.c From owner-cvs-usrsbin Fri Feb 20 17:48:37 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26165 for cvs-usrsbin-outgoing; Fri, 20 Feb 1998 17:48:37 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25747; Fri, 20 Feb 1998 17:46:24 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA17221; Fri, 20 Feb 1998 17:45:31 -0800 (PST) Date: Fri, 20 Feb 1998 17:45:31 -0800 (PST) Message-Id: <199802210145.RAA17221@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp arp.c arp.h auth.c bundle.c bundle.h ccp.c ccp.h command.c datalink.c filter.c fsm.c fsm.h hdlc.c ipcp.c ipcp.h lcp.c lcp.h link.h main.c modem.c modem.h physical.h slcompress.h vjcomp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/02/20 17:45:30 PST Modified files: (Branch: MP) usr.sbin/ppp arp.c arp.h auth.c bundle.c bundle.h ccp.c ccp.h command.c datalink.c filter.c fsm.c fsm.h hdlc.c ipcp.c ipcp.h lcp.c lcp.h link.h main.c modem.c modem.h physical.h slcompress.h vjcomp.c Log: Shuffle around our FSMs a bit. This'll make it easier to remove the CcpInfo, LcpInfo and IpcpInfo globals. Revision Changes Path 1.27.2.4 +10 -13 src/usr.sbin/ppp/arp.c 1.7.2.4 +3 -5 src/usr.sbin/ppp/arp.h 1.27.2.9 +4 -4 src/usr.sbin/ppp/auth.c 1.1.2.15 +8 -4 src/usr.sbin/ppp/Attic/bundle.c 1.1.2.10 +6 -4 src/usr.sbin/ppp/Attic/bundle.h 1.30.2.12 +55 -51 src/usr.sbin/ppp/ccp.c 1.14.2.10 +7 -7 src/usr.sbin/ppp/ccp.h 1.131.2.28 +31 -31 src/usr.sbin/ppp/command.c 1.1.2.12 +8 -8 src/usr.sbin/ppp/Attic/datalink.c 1.22.2.5 +3 -3 src/usr.sbin/ppp/filter.c 1.27.2.13 +30 -10 src/usr.sbin/ppp/fsm.c 1.16.2.7 +9 -2 src/usr.sbin/ppp/fsm.h 1.28.2.13 +6 -6 src/usr.sbin/ppp/hdlc.c 1.50.2.15 +168 -155 src/usr.sbin/ppp/ipcp.c 1.18.2.13 +26 -24 src/usr.sbin/ppp/ipcp.h 1.55.2.19 +38 -25 src/usr.sbin/ppp/lcp.c 1.16.2.11 +4 -2 src/usr.sbin/ppp/lcp.h 1.1.2.5 +3 -1 src/usr.sbin/ppp/Attic/link.h 1.121.2.27 +3 -3 src/usr.sbin/ppp/main.c 1.77.2.24 +26 -7 src/usr.sbin/ppp/modem.c 1.16.2.9 +3 -2 src/usr.sbin/ppp/modem.h 1.1.2.11 +3 -3 src/usr.sbin/ppp/Attic/physical.h 1.10.2.2 +5 -3 src/usr.sbin/ppp/slcompress.h 1.16.2.4 +4 -4 src/usr.sbin/ppp/vjcomp.c From owner-cvs-usrsbin Sat Feb 21 10:17:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24132 for cvs-usrsbin-outgoing; Sat, 21 Feb 1998 10:17:27 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23522; Sat, 21 Feb 1998 10:15:31 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA14988; Sat, 21 Feb 1998 10:14:32 -0800 (PST) Date: Sat, 21 Feb 1998 10:14:32 -0800 (PST) Message-Id: <199802211814.KAA14988@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/21 10:14:31 PST Modified files: usr.sbin/ypserv Makefile.yp Log: *sigh* I will not commit late at night. I will not commit late at night. I will not commit late at night. I will not commit late at night. I swear it's been Monday all week for me. Apply proper fix for services target submitted by Andre Albsmeier . Sorry for botching this that last time, Andre. (Could have been worse: t least I didn't break the build.) Revision Changes Path 1.24 +1 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-usrsbin Sat Feb 21 10:18:24 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24218 for cvs-usrsbin-outgoing; Sat, 21 Feb 1998 10:18:24 -0800 (PST) (envelope-from owner-cvs-usrsbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA23882; Sat, 21 Feb 1998 10:16:32 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA15029; Sat, 21 Feb 1998 10:15:31 -0800 (PST) Date: Sat, 21 Feb 1998 10:15:31 -0800 (PST) Message-Id: <199802211815.KAA15029@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/02/21 10:15:31 PST Modified files: (Branch: RELENG_2_2) usr.sbin/ypserv Makefile.yp Log: YAMFC. Just shoot me now, okay? Revision Changes Path 1.13.2.7 +1 -2 src/usr.sbin/ypserv/Makefile.yp