Commit 33dcfeda authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Use mode 0755 rather than 0600 for the state directory.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1526 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 5a4964c8
......@@ -526,7 +526,7 @@ tweak_name(struct cli *cli, struct parspec *par, const char* arg)
return;
}
} else {
if (mkdir(path, 0600)) {
if (mkdir(path, 0755)) {
fprintf(stderr,
"Error: Directory %s could not be created",
path);
......
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