summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c
index 2a47806..4a991bd 100644
--- a/log.c
+++ b/log.c
@@ -80,7 +80,7 @@ static FILE *logFile(struct Tag tag, const struct tm *time) {
char path[sizeof("YYYY-MM-DD.log")];
strftime(path, sizeof(path), "%F.log", time);
int fd = openat(
- log->dir, path, O_WRONLY | O_APPEND | O_CREAT | O_CLOEXEC, 0700
+ log->dir, path, O_WRONLY | O_APPEND | O_CREAT | O_CLOEXEC, 0600
);
if (fd < 0) err(EX_CANTCREAT, "%s/%s", tag.name, path);