From cbc9545cb3f76733030c867f32ddb6a922cd2907 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 28 Jun 2021 09:11:02 -0400 Subject: FreeBSD: Use capsicum_helpers.h --- ui.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index a3003df..abf477c 100644 --- a/ui.c +++ b/ui.c @@ -49,7 +49,7 @@ #include #ifdef __FreeBSD__ -#include +#include #endif #include "chat.h" @@ -1192,8 +1192,9 @@ void uiLoad(const char *name) { #ifdef __FreeBSD__ cap_rights_t rights; - cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FLOCK, CAP_FTRUNCATE); - error = cap_rights_limit(fileno(saveFile), &rights); + caph_stream_rights(&rights, CAPH_READ | CAPH_WRITE); + cap_rights_set(&rights, CAP_FLOCK, CAP_FTRUNCATE); + error = caph_rights_limit(fileno(saveFile), &rights); if (error) err(EX_OSERR, "cap_rights_limit"); #endif -- cgit 1.4.1