diff options
author | bde <bde@FreeBSD.org> | 1997-10-21 07:26:50 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-10-21 07:26:50 +0000 |
commit | 1c795f36be1b1f30bf74e798752e87e32934aad0 (patch) | |
tree | 3283db766bf0217f3e96a5a496050cd891074bf9 /sbin/i386 | |
parent | 4004e38e8b0ac9cee680d84bf99a6f947fe10e5f (diff) | |
download | FreeBSD-src-1c795f36be1b1f30bf74e798752e87e32934aad0.zip FreeBSD-src-1c795f36be1b1f30bf74e798752e87e32934aad0.tar.gz |
Don't install mount_msdos setuid root. Lite2's mount(2) handles
permissions centrally and a setuid root mount utility just breaks
its security. There was no new breakage in practice because
mfdosfs_mount() still checks the ruid.
Diffstat (limited to 'sbin/i386')
-rw-r--r-- | sbin/i386/mount_msdos/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sbin/i386/mount_msdos/Makefile b/sbin/i386/mount_msdos/Makefile index f6c88ab..4f9fdf0 100644 --- a/sbin/i386/mount_msdos/Makefile +++ b/sbin/i386/mount_msdos/Makefile @@ -1,14 +1,11 @@ # -# $Id: Makefile,v 1.4 1997/02/22 14:32:29 peter Exp $ +# $Id: Makefile,v 1.5 1997/03/03 13:23:54 bde Exp $ # PROG= mount_msdos SRCS= mount_msdos.c getmntopts.c MAN8= mount_msdos.8 -BINOWN= root -BINMODE= 4555 - MOUNT= ${.CURDIR}/../../mount CFLAGS+= -D_NEW_VFSCONF CFLAGS+= -I${MOUNT} |