pflog is a separate module now.

Submitted by:	Antoine Brodin
PR:		kern/88271
MFC after:	1 week
This commit is contained in:
Max Laier 2006-02-05 22:38:08 +00:00
parent 697e7cb715
commit d662ee1c20
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=155356

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