From owner-cvs-usrsbin Sat Nov 8 22:26:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id WAA17950 for cvs-usrsbin-outgoing; Sat, 8 Nov 1997 22:26: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.7/8.8.7) with ESMTP id WAA17899; Sat, 8 Nov 1997 22:24:43 -0800 (PST) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id WAA28071; Sat, 8 Nov 1997 22:22:54 -0800 (PST) Date: Sat, 8 Nov 1997 22:22:54 -0800 (PST) Message-Id: <199711090622.WAA28071@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrsbin@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp id.c id.h Makefile arp.c chat.c command.c loadalias.c log.c log.h main.c modem.c os.c ppp.8 pred.c route.c server.c systems.c systems.h timer.c vjcomp.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/11/08 22:22:54 PST Modified files: usr.sbin/ppp Makefile arp.c chat.c command.c loadalias.c log.c log.h main.c modem.c os.c ppp.8 pred.c route.c server.c systems.c systems.h timer.c vjcomp.c Added files: usr.sbin/ppp id.c id.h Log: Introduce ID0 logging. Stay as the invoking uid as much as possible. Execution as a normal user is still forbidden for now, so these changes are pretty ineffective. The next commit will implement the modifications suggested on -hackers a number of days ago. Revision Changes Path 1.29 +2 -2 src/usr.sbin/ppp/Makefile 1.17 +8 -5 src/usr.sbin/ppp/arp.c 1.37 +2 -10 src/usr.sbin/ppp/chat.c 1.92 +2 -13 src/usr.sbin/ppp/command.c 1.9 +3 -2 src/usr.sbin/ppp/loadalias.c 1.19 +2 -1 src/usr.sbin/ppp/log.c 1.16 +14 -13 src/usr.sbin/ppp/log.h 1.89 +7 -9 src/usr.sbin/ppp/main.c 1.63 +13 -13 src/usr.sbin/ppp/modem.c 1.31 +11 -10 src/usr.sbin/ppp/os.c 1.74 +2 -1 src/usr.sbin/ppp/ppp.8 1.16 +2 -1 src/usr.sbin/ppp/pred.c 1.23 +12 -7 src/usr.sbin/ppp/route.c 1.7 +7 -6 src/usr.sbin/ppp/server.c 1.19 +7 -94 src/usr.sbin/ppp/systems.c 1.8 +1 -3 src/usr.sbin/ppp/systems.h 1.23 +2 -1 src/usr.sbin/ppp/timer.c 1.12 +2 -1 src/usr.sbin/ppp/vjcomp.c