summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 075b845)
raw | patch | inline | side by side (parent: 075b845)
author | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Mon, 11 Apr 2005 17:24:41 +0000 (10:24 -0700) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Mon, 11 Apr 2005 17:24:41 +0000 (10:24 -0700) |
After all, if you want to not allow others to read your
stuff, set your "umask" appropriately or make sure the
parent directories aren't readable/executable.
stuff, set your "umask" appropriately or make sure the
parent directories aren't readable/executable.
checkout-cache.c | patch | blob | history | |
init-db.c | patch | blob | history |
diff --git a/checkout-cache.c b/checkout-cache.c
index cfbc47ee2db059092fc432865269b82943dfa084..73a1a8d6680cb11aa9616948ff5aa72f2caa66bb 100644 (file)
--- a/checkout-cache.c
+++ b/checkout-cache.c
len = slash - path;
memcpy(buf, path, len);
buf[len] = 0;
- mkdir(buf, 0700);
+ mkdir(buf, 0755);
}
}
diff --git a/init-db.c b/init-db.c
index 1fcef0b373ccec8693ffab22adfe94f4f3c5b86d..bbb3ad98e0fe5739f8ae8a8d2c10352dc1281461 100644 (file)
--- a/init-db.c
+++ b/init-db.c
char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
int len, i;
- if (mkdir(".dircache", 0700) < 0) {
+ if (mkdir(".dircache", 0755) < 0) {
perror("unable to create .dircache");
exit(1);
}
sha1_dir = DEFAULT_DB_ENVIRONMENT;
fprintf(stderr, "defaulting to private storage area\n");
len = strlen(sha1_dir);
- if (mkdir(sha1_dir, 0700) < 0) {
+ if (mkdir(sha1_dir, 0755) < 0) {
if (errno != EEXIST) {
perror(sha1_dir);
exit(1);
memcpy(path, sha1_dir, len);
for (i = 0; i < 256; i++) {
sprintf(path+len, "/%02x", i);
- if (mkdir(path, 0700) < 0) {
+ if (mkdir(path, 0755) < 0) {
if (errno != EEXIST) {
perror(path);
exit(1);