summaryrefslogtreecommitdiff
path: root/etc/rc.conf
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2011-07-17 16:35:59 +0000
committerDavid Krause <david@cvs.openbsd.org>2011-07-17 16:35:59 +0000
commit10c0ea441ef32806bec6e0e1377eac24f6713c73 (patch)
tree408e34bf26e7ae27a7af3535e18e45bb6452f462 /etc/rc.conf
parent46ad61edf3b21279e6e34c2359b1532f37cfbdb3 (diff)
fix ${pf} variable so that the special pflogd check works; ok deraadt@
Diffstat (limited to 'etc/rc.conf')
-rw-r--r--etc/rc.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.conf b/etc/rc.conf
index ad6d1f26a0d..35c1103abb8 100644
--- a/etc/rc.conf
+++ b/etc/rc.conf
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: rc.conf,v 1.156 2011/07/11 05:50:05 robert Exp $
+# $OpenBSD: rc.conf,v 1.157 2011/07/17 16:35:58 david Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
ldpd_flags=NO # for normal use: ""
@@ -130,7 +130,7 @@ fi
# special care needed for pflogd to avoid starting it up and failing
# if pf is not enabled
-if [ X"${PF}" = X"NO" ]; then
+if [ X"${pf}" = X"NO" ]; then
pflogd_flags=NO
fi