From f7915a69d79c50d5aa45a4dc76f0d383c29fbad1 Mon Sep 17 00:00:00 2001 From: david <> Date: Sun, 17 Jul 2011 16:35:58 +0000 Subject: [PATCH] fix ${pf} variable so that the special pflogd check works; ok deraadt@ --- src/etc/rc.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc.conf b/src/etc/rc.conf index ad6d1f26..35c1103a 100644 --- a/src/etc/rc.conf +++ b/src/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