diff options
author | June McEnroe <june@causal.agency> | 2021-10-16 17:03:31 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-10-16 17:03:31 -0400 |
commit | b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4 (patch) | |
tree | 45fb76bbe6f5037d5827130c89e63e6d9cc22c16 /chat.c | |
parent | chroot: Factor out and add OpenBSD build (diff) | |
download | catgirl-b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4.tar.gz catgirl-b6cf41ab77a4324b4f4cf0bc9e3d82a5fef9ebd4.zip |
Import refactored xdg.c from pounce
Diffstat (limited to '')
-rw-r--r-- | chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chat.c b/chat.c index 54e7e5e..ba6c9a1 100644 --- a/chat.c +++ b/chat.c @@ -149,8 +149,8 @@ static void sandboxEarly(bool log) { char *end = &promises[sizeof(promises)]; if (log) { - const char *logdir = dataMkdir("log"); - int error = unveil(logdir, "wc"); + char buf[PATH_MAX]; + int error = unveil(dataPath(buf, sizeof(buf), "log", 0), "wc"); if (error) err(EX_OSERR, "unveil"); ptr = seprintf(ptr, end, " wpath cpath"); } |