summaryrefslogtreecommitdiff
path: root/devel/got/files/patch-libexec_got-index-pack_got-index-pack.c
blob: bc07b3bdb9bc127458f1460de178a2a5cd1b36b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- libexec/got-index-pack/got-index-pack.c.orig	2022-10-20 14:40:52 UTC
+++ libexec/got-index-pack/got-index-pack.c
@@ -15,6 +15,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/capsicum.h>
 #include <sys/types.h>
 #include <sys/queue.h>
 #include <sys/mman.h>
@@ -110,6 +111,11 @@ main(int argc, char **argv)
 	/* revoke access to most system calls */
 	if (pledge("stdio recvfd", NULL) == -1) {
 		err = got_error_from_errno("pledge");
+		got_privsep_send_error(&ibuf, err);
+		return 1;
+	}
+	if (cap_enter() == -1) {
+		err = got_error_from_errno("cap_enter");
 		got_privsep_send_error(&ibuf, err);
 		return 1;
 	}