diff options
author | 2002-06-08 22:47:36 +0000 | |
---|---|---|
committer | 2002-06-08 22:47:36 +0000 | |
commit | d598ca71296989b8ffb0ffa5910d8caa47816202 (patch) | |
tree | 339fe36c9db9cb6b37ec2cb7aa0eb73b3d49f7a7 | |
parent | RFCs, not RFC's; Adrian Knoth (diff) | |
download | wireguard-openbsd-d598ca71296989b8ffb0ffa5910d8caa47816202.tar.xz wireguard-openbsd-d598ca71296989b8ffb0ffa5910d8caa47816202.zip |
This doesn't need to be setgid operator; it was only set so users
could do "df /dev/rwd0a" or some such, but arguably only operators (or
root) care about this, and they should already be on the operator
group.
-rw-r--r-- | bin/df/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile index 7234bcb381f..7b604730e1a 100644 --- a/bin/df/Makefile +++ b/bin/df/Makefile @@ -1,8 +1,6 @@ -# $OpenBSD: Makefile,v 1.4 1997/09/21 11:34:56 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2002/06/08 22:47:36 angelos Exp $ PROG= df SRCS= df.c ffs_df.c lfs_df.c ext2fs_df.c -BINGRP= operator -BINMODE=2555 .include <bsd.prog.mk> |