diff options
-rw-r--r-- | sys/net/pfvar.h | 4 |
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 }; |