Skip to content

Commit

Permalink
Added the missing character :)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbrnc committed Oct 6, 2011
1 parent 1950cd5 commit 20967c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.vcl
Expand Up @@ -73,7 +73,7 @@ sub vcl_recv {
if (req.http.Cache-Control ~ "no-cache") {
if (client.ip ~ cache_acl) {
purge_url(req.url);
error 200 "Purged."
error 200 "Purged.";
} else {
error 405 "Not allowed.";
}
Expand All @@ -83,7 +83,7 @@ sub vcl_recv {
if (req.request == "PURGE") {
if (client.ip ~ cache_acl) {
purge_url(req.url);
error 200 "Purged."
error 200 "Purged.";
} else {
error 405 "Not allowed.";
}
Expand Down

0 comments on commit 20967c8

Please sign in to comment.