summaryrefslogtreecommitdiff
path: root/sys/net/pfvar.h
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-29 03:09:15 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-29 03:09:15 +0000
commita807ed16825a23b1a85e66f6f22ff9c865046948 (patch)
tree06d9eb9092a165ae8ffb883d24e7747721a66e53 /sys/net/pfvar.h
parent1825a3fb7aea273933e6b57f370e5456801880aa (diff)
Fix PF_SCRUB enumerator.
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r--sys/net/pfvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index a7a0c47d2a2..5c581e8043c 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfvar.h,v 1.25 2001/06/29 00:27:47 dhartmei Exp $ */
+/* $OpenBSD: pfvar.h,v 1.26 2001/06/29 03:09:14 angelos Exp $ */
/*
* Copyright (c) 2001, Daniel Hartmeier
@@ -37,7 +37,7 @@
#include <sys/queue.h>
enum { PF_IN=0, PF_OUT=1 };
-enum { PF_PASS=0, PF_DROP=1, PF_DROP_RST=2, PF_SCRUB };
+enum { PF_PASS=0, PF_DROP=1, PF_DROP_RST=2, PF_SCRUB=3 };
enum { PF_OP_GL=1, PF_OP_EQ=2, PF_OP_NE=3, PF_OP_LT=4,
PF_OP_LE=5, PF_OP_GT=6, PF_OP_GE=7 };