From owner-cvs-usrbin Tue Aug 6 19:15:50 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA23000 for cvs-usrbin-outgoing; Tue, 6 Aug 1996 19:15:50 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA22970; Tue, 6 Aug 1996 19:15:31 -0700 (PDT) Date: Tue, 6 Aug 1996 19:15:31 -0700 (PDT) From: "Jordan K. Hubbard" Message-Id: <199608070215.TAA22970@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/fetch main.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 96/08/06 19:15:29 Modified: usr.bin/fetch main.c Log: Defer to fashion. Revision Changes Path 1.13 +10 -10 src/usr.bin/fetch/main.c From owner-cvs-usrbin Wed Aug 7 06:26:39 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA18726 for cvs-usrbin-outgoing; Wed, 7 Aug 1996 06:26:39 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA18674; Wed, 7 Aug 1996 06:26:04 -0700 (PDT) Date: Wed, 7 Aug 1996 06:26:04 -0700 (PDT) From: Peter Wemm Message-Id: <199608071326.GAA18674@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-user, cvs-usrbin Subject: cvs commit: src Makefile src/usr.bin/lex Makefile Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/08/07 06:26:00 Modified: . Makefile usr.bin/lex Makefile Log: Move tsort back to lib-tools where it belongs, and add a "specially for bootstrap" tweak to the lex Makefile to stop it building the library too early. This untangles things a bit more, it stops new bootstraps failing because libl/libfl uses 'ld -O' before ld is updated. Revision Changes Path 1.95 +4 -4 src/Makefile 1.6 +3 -2 src/usr.bin/lex/Makefile From owner-cvs-usrbin Thu Aug 8 00:58:18 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA19482 for cvs-usrbin-outgoing; Thu, 8 Aug 1996 00:58:18 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA19463; Thu, 8 Aug 1996 00:58:10 -0700 (PDT) Date: Thu, 8 Aug 1996 00:58:10 -0700 (PDT) From: Joerg Wunsch Message-Id: <199608080758.AAA19463@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/modstat modstat.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk joerg 96/08/08 00:58:09 Modified: usr.bin/modstat modstat.c Log: Fix a potential buffer overflow condition. Submitted by: Somebody on -hackers, ooops, i've already deleted that mail Revision Changes Path 1.4 +3 -2 src/usr.bin/modstat/modstat.c From owner-cvs-usrbin Sat Aug 10 00:54:28 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA17508 for cvs-usrbin-outgoing; Sat, 10 Aug 1996 00:54:28 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA17492; Sat, 10 Aug 1996 00:54:20 -0700 (PDT) Date: Sat, 10 Aug 1996 00:54:20 -0700 (PDT) From: Peter Wemm Message-Id: <199608100754.AAA17492@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/rdist rshrcmd.c Makefile defs.h docmd.c expand.c gram.y lookup.c main.c pathnames.h rdist.1 server.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/08/10 00:54:20 Modified: usr.bin/rdist Makefile defs.h docmd.c expand.c gram.y lookup.c main.c pathnames.h rdist.1 server.c Added: usr.bin/rdist rshrcmd.c Log: Remove the need for rdist(1) to run setuid, thus completely closing any possibility of a security hole. It now does what rdist-6 does, and calls /usr/bin/rsh if not running as root. There are NO protocol changes, this is 100% compatable with the old rdist, except that it does not need setuid root privs. However, there are some minor differences to the base rdist-6 code in that if it is being run by root, it will call rcmd(3) directly rather than piping everything through rsh(1). This is a little more efficient as it doesn't involve context switching on pipe reads/writes. Also, the -P option was added from rdist-6.1.2, which allows an alternative rsh program to be specified, such as ssh. Note that it requires the fixes to the ssh port to disable the unconditional USE_PIPES option that was recently added. The rcmd(3) optimisation is disabled if a non-rsh program is speficied. Revision Changes Path 1.3 +8 -4 src/usr.bin/rdist/Makefile 1.3 +9 -0 src/usr.bin/rdist/defs.h 1.5 +60 -5 src/usr.bin/rdist/docmd.c 1.3 +8 -8 src/usr.bin/rdist/expand.c 1.3 +3 -3 src/usr.bin/rdist/gram.y 1.3 +2 -2 src/usr.bin/rdist/lookup.c 1.2 +11 -3 src/usr.bin/rdist/main.c 1.2 +1 -0 src/usr.bin/rdist/pathnames.h 1.3 +9 -3 src/usr.bin/rdist/rdist.1 1.4 +15 -15 src/usr.bin/rdist/server.c From owner-cvs-usrbin Sat Aug 10 02:05:34 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA24666 for cvs-usrbin-outgoing; Sat, 10 Aug 1996 02:05:34 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA24633; Sat, 10 Aug 1996 02:05:20 -0700 (PDT) Date: Sat, 10 Aug 1996 02:05:20 -0700 (PDT) From: Peter Wemm Message-Id: <199608100905.CAA24633@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/ktrace ktrace.1 Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/08/10 02:05:19 Modified: usr.bin/ktrace ktrace.1 Log: s/trace -C/ktrace -C/ Pointed out by: zgabor@code.hu (Zahemszky Gabor) PR#1486 Revision Changes Path 1.3 +1 -1 src/usr.bin/ktrace/ktrace.1 From owner-cvs-usrbin Sat Aug 10 19:21:20 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA01296 for cvs-usrbin-outgoing; Sat, 10 Aug 1996 19:21:20 -0700 (PDT) Received: (from alex@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id TAA01247; Sat, 10 Aug 1996 19:20:07 -0700 (PDT) Date: Sat, 10 Aug 1996 19:20:07 -0700 (PDT) From: Alex Nash Message-Id: <199608110220.TAA01247@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/wall wall.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk alex 96/08/10 19:20:07 Modified: usr.bin/wall wall.c Log: Fix some improperly wrapped lines in the code. Revision Changes Path 1.3 +2 -4 src/usr.bin/wall/wall.c