From 54d899196cf65e9954a3f5cc5da05af6afc82d3c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 13 Jul 2021 17:58:14 +0000 Subject: FreeBSD: Avoid caph_stream_rights(3) caph_stream_rights(3) doesn't exist before FreeBSD 13.0 and there's no good reason to create that dependency. I still run servers on FreeBSD 12. This is a partial revert of cbc9545cb3f76733030c867f32ddb6a922cd2907. --- log.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'log.c') diff --git a/log.c b/log.c index e31c5fe..c13293a 100644 --- a/log.c +++ b/log.c @@ -54,8 +54,10 @@ void logOpen(void) { #ifdef __FreeBSD__ cap_rights_t rights; - caph_stream_rights(&rights, CAPH_WRITE); - cap_rights_set(&rights, CAP_MKDIRAT, CAP_CREATE); + cap_rights_init( + &rights, CAP_MKDIRAT, CAP_CREATE, CAP_WRITE, + /* for fdopen(3) */ CAP_FCNTL, CAP_FSTAT + ); int error = caph_rights_limit(logDir, &rights); if (error) err(EX_OSERR, "cap_rights_limit"); #endif -- cgit 1.4.1