about summary refs log tree commit diff
path: root/log.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-06-28 09:11:02 -0400
committerJune McEnroe <june@causal.agency>2021-06-28 09:11:02 -0400
commitcbc9545cb3f76733030c867f32ddb6a922cd2907 (patch)
tree4a3a316d013cb47391dc591245530f0fe2944b36 /log.c
parentSet MANDIR in chroot (diff)
downloadcatgirl-cbc9545cb3f76733030c867f32ddb6a922cd2907.tar.gz
catgirl-cbc9545cb3f76733030c867f32ddb6a922cd2907.zip
FreeBSD: Use capsicum_helpers.h
Diffstat (limited to 'log.c')
-rw-r--r--log.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/log.c b/log.c
index fab5a41..e31c5fe 100644
--- a/log.c
+++ b/log.c
@@ -39,7 +39,7 @@
 #include <unistd.h>
 
 #ifdef __FreeBSD__
-#include <sys/capsicum.h>
+#include <capsicum_helpers.h>
 #endif
 
 #include "chat.h"
@@ -54,11 +54,9 @@ void logOpen(void) {
 
 #ifdef __FreeBSD__
 	cap_rights_t rights;
-	cap_rights_init(
-		&rights, CAP_MKDIRAT, CAP_CREATE, CAP_WRITE,
-		/* for fdopen(3) */ CAP_FCNTL, CAP_FSTAT
-	);
-	int error = cap_rights_limit(logDir, &rights);
+	caph_stream_rights(&rights, CAPH_WRITE);
+	cap_rights_set(&rights, CAP_MKDIRAT, CAP_CREATE);
+	int error = caph_rights_limit(logDir, &rights);
 	if (error) err(EX_OSERR, "cap_rights_limit");
 #endif
 }