diff options
author | June McEnroe <june@causal.agency> | 2021-06-21 13:31:05 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-06-21 13:31:05 -0400 |
commit | 73181be1ca02a37f09cb2515619edf49ecc73c1c (patch) | |
tree | 322ac1b043efba2e87e8382adfa656b7bbdba0e3 /log.c | |
parent | Open save file with CLOEXEC (diff) | |
download | catgirl-73181be1ca02a37f09cb2515619edf49ecc73c1c.tar.gz catgirl-73181be1ca02a37f09cb2515619edf49ecc73c1c.zip |
Open log files with CLOEXEC
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c index 11edb52..2efb2e4 100644 --- a/log.c +++ b/log.c @@ -82,7 +82,7 @@ static FILE *logFile(uint id, const struct tm *tm) { dataMkdir(path); strftime(&path[len], sizeof(path) - len, "/%F.log", tm); - logs[id].file = dataOpen(path, "a"); + logs[id].file = dataOpen(path, "ae"); if (!logs[id].file) exit(EX_CANTCREAT); setlinebuf(logs[id].file); |