
tfheen at varnish-cache
Apr 16, 2012, 1:20 AM
Post #1 of 1
(31 views)
Permalink
|
|
[3.0] b400281 Fix syntax for 3.0
|
|
commit b4002811cb56561cceedb8cc35528809658b3d9d Author: Andreas Plesner Jacobsen <apj [at] mutt> Date: Tue Dec 20 16:18:12 2011 +0100 Fix syntax for 3.0 diff --git a/doc/sphinx/tutorial/cookies.rst b/doc/sphinx/tutorial/cookies.rst index ab59e21..0278712 100644 --- a/doc/sphinx/tutorial/cookies.rst +++ b/doc/sphinx/tutorial/cookies.rst @@ -50,7 +50,7 @@ cookies named COOKIE1 and COOKIE2 and you can marvel at it:: sub vcl_recv { if (req.http.Cookie) { - set req.http.Cookie = ";" req.http.Cookie; + set req.http.Cookie = ";" + req.http.Cookie; set req.http.Cookie = regsuball(req.http.Cookie, "; +", ";"); set req.http.Cookie = regsuball(req.http.Cookie, ";(COOKIE1|COOKIE2)=", "; \1="); set req.http.Cookie = regsuball(req.http.Cookie, ";[^ ][^;]*", ""); _______________________________________________ varnish-commit mailing list varnish-commit [at] varnish-cache https://www.varnish-cache.org/lists/mailman/listinfo/varnish-commit
|