diff options
author | 2016-04-20 21:14:44 +0000 | |
---|---|---|
committer | 2016-04-20 21:14:44 +0000 | |
commit | de9176d183e23a44b1690821a630bce03202032d (patch) | |
tree | 80db2e085ae635987d50eb18eea36fba060ec6bd | |
parent | Apply fix for perl bug 123562 which has been assigned CVE-2015-8853. (diff) | |
download | wireguard-openbsd-de9176d183e23a44b1690821a630bce03202032d.tar.xz wireguard-openbsd-de9176d183e23a44b1690821a630bce03202032d.zip |
Remove the requirement that /etc/printcap must be a regular file.
CUPS wants it to be a symlink, and that is probably the most common
printing system. Bad idea to constantly spam everybody about that!
Antoine already adjusted the file permissions in pkg/cupsd.rc rev. 1.24.
OK ajacoutot@ (print/cups MAINTAINER).
-rw-r--r-- | etc/mtree/special | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/mtree/special b/etc/mtree/special index 34749f9dd92..a8e3486fa55 100644 --- a/etc/mtree/special +++ b/etc/mtree/special @@ -1,4 +1,4 @@ -# $OpenBSD: special,v 1.117 2016/03/08 00:16:47 tb Exp $ +# $OpenBSD: special,v 1.118 2016/04/20 21:14:44 schwarze Exp $ # # Hand-crafted mtree specification for the dangerous files. # @@ -73,7 +73,7 @@ ospfd.conf type=file mode=0600 uname=root gname=wheel optional ospf6d.conf type=file mode=0600 uname=root gname=wheel optional passwd type=file mode=0644 uname=root gname=wheel pf.conf type=file mode=0600 uname=root gname=wheel optional -printcap type=file mode=0644 uname=root gname=wheel optional +printcap mode=0644 uname=root gname=wheel optional radiusd.conf type=file mode=0600 uname=root gname=wheel optional rc type=file mode=0644 uname=root gname=wheel rc.conf type=file mode=0644 uname=root gname=wheel |