summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-06-08 08:45:17 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-06-08 08:45:17 +0000
commit50c0a8557f10ea3b8c6a95b054a6d9b734a8d738 (patch)
tree06db598d3be868bae59bf511a6fc76ade569a612
parent5dad39190ed487f3d5250f64b2590f9749fae051 (diff)
no macro concatenation via +=
-rw-r--r--regress/sbin/pfctl/pf8.in3
-rw-r--r--regress/sbin/pfctl/pf8.ok9
2 files changed, 4 insertions, 8 deletions
diff --git a/regress/sbin/pfctl/pf8.in b/regress/sbin/pfctl/pf8.in
index 6d774d0b9db..4276a9bb470 100644
--- a/regress/sbin/pfctl/pf8.in
+++ b/regress/sbin/pfctl/pf8.in
@@ -1,3 +1,2 @@
-extern = "{ ! 10.0.0.0/8, 10.1.2.3, "
-extern += "10.1.2.4, 10.1.2.5 }"
+extern = "{ ! 10.0.0.0/8, 10.1.2.3 }"
block out log on tun1 from $extern to any
diff --git a/regress/sbin/pfctl/pf8.ok b/regress/sbin/pfctl/pf8.ok
index dc327943449..592182dfaeb 100644
--- a/regress/sbin/pfctl/pf8.ok
+++ b/regress/sbin/pfctl/pf8.ok
@@ -1,6 +1,3 @@
-extern = { ! 10.0.0.0/8, 10.1.2.3,
-extern += 10.1.2.4, 10.1.2.5 }
-@0 block out log on tun1 inet from 10.1.2.5 to any
-@1 block out log on tun1 inet from 10.1.2.4 to any
-@2 block out log on tun1 inet from 10.1.2.3 to any
-@3 block out log on tun1 inet from ! 10.0.0.0/8 to any
+extern = { ! 10.0.0.0/8, 10.1.2.3 }
+@0 block out log on tun1 inet from 10.1.2.3 to any
+@1 block out log on tun1 inet from ! 10.0.0.0/8 to any