pflog is a separate module now.

Submitted by:	Antoine Brodin
PR:		kern/88271
MFC after:	1 week
This commit is contained in:
mlaier 2006-02-05 22:38:08 +00:00
parent 2d37c104ef
commit 1bebb42407

View File

@ -24,10 +24,10 @@ pflog_prestart()
{
# load pflog kernel module if needed
if ! kldstat -q -m pflog; then
if kldload pf; then
info 'pf module loaded.'
if kldload pflog; then
info 'pflog module loaded.'
else
warn 'pf module failed to load.'
warn 'pflog module failed to load.'
return 1
fi
fi