Commit 09d6e53c authored by Artur Bergman's avatar Artur Bergman

merge #3350 into trunk -- make tests fail if you have a long and correct...

merge #3350 into trunk -- make tests fail if you have a long and correct search list; which my laptop has

git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3352 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent f38e7c86
......@@ -34,7 +34,7 @@ varnish v1 -badvcl {
varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
acl a { "en.lille.nisse.rejste"; }
acl a { "en.lille.nisse.rejste."; }
sub vcl_recv { if (client.ip ~ a) { pass; } }
}
......@@ -60,8 +60,8 @@ varnish v1 -vcl {
backend b { .host = "127.0.0.1"; }
acl a {
! "10.1.3";
("en.lille.nisse.rejste" / 22);
(!"en.lille.nisse.rejste");
("en.lille.nisse.rejste." / 22);
(!"en.lille.nisse.rejste.");
}
sub vcl_recv { if (client.ip ~ a) { pass; } }
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment