diff options
author | June McEnroe <june@causal.agency> | 2021-10-17 12:36:09 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-10-17 12:36:09 -0400 |
commit | 875ca304cd09704281b289266d8d0fcbb30e7a31 (patch) | |
tree | 96b849e579a5e0ce71f2d88b91232d9a6e4a6d86 /client.c | |
parent | Build chroot only for OpenBSD, remove rc script (diff) | |
download | torus-875ca304cd09704281b289266d8d0fcbb30e7a31.tar.gz torus-875ca304cd09704281b289266d8d0fcbb30e7a31.zip |
Remove capsicum support
Diffstat (limited to '')
-rw-r--r-- | client.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/client.c b/client.c index 29c8f38..787c56a 100644 --- a/client.c +++ b/client.c @@ -33,10 +33,6 @@ #include <unistd.h> #include <wchar.h> -#ifdef __FreeBSD__ -#include <sys/capsicum.h> -#endif - #include "torus.h" #include "help.h" @@ -722,16 +718,6 @@ int main(int argc, char *argv[]) { if (error) err(EX_OSERR, "pledge"); #endif -#ifdef __FreeBSD__ - error = cap_enter(); - if (error) err(EX_OSERR, "cap_enter"); - - cap_rights_t rights; - cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_EVENT); - error = cap_rights_limit(client, &rights); - if (error) err(EX_OSERR, "cap_rights_limit"); -#endif - struct pollfd fds[2] = { { .fd = STDIN_FILENO, .events = POLLIN }, { .fd = client, .events = POLLIN }, |