Commit da392835 authored by Federico G. Schwindt's avatar Federico G. Schwindt

First stab at fixing some corner case

Found by ingvar while packaging 4.1.0.
parent 159fc1cd
......@@ -36,9 +36,9 @@ varnish v1 -errvcl {DNS lookup(...com): } {
sub vcl_recv { if (client.ip ~ a) { return(pass); } }
}
varnish v1 -errvcl {DNS lookup(10.1.2.): } {
varnish v1 -errvcl {DNS lookup(10.1..2): } {
backend b { .host = "127.0.0.1"; }
acl a { "10.1.2."; }
acl a { "10.1..2"; }
sub vcl_recv { if (client.ip ~ a) { return(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