summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorangelos <angelos@openbsd.org>2001-06-29 03:09:14 +0000
committerangelos <angelos@openbsd.org>2001-06-29 03:09:14 +0000
commitddfc4440bf77c0a645612a11b3c00a3eef3429cd (patch)
tree4a8976ec25356c2da166a372796ed5af002cbbfb
parentnote safety (discussed with art) (diff)
downloadwireguard-openbsd-ddfc4440bf77c0a645612a11b3c00a3eef3429cd.tar.xz
wireguard-openbsd-ddfc4440bf77c0a645612a11b3c00a3eef3429cd.zip
Fix PF_SCRUB enumerator.
-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 };