summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-01-12 18:21:32 -0500
committerJune McEnroe <june@causal.agency>2020-01-12 18:21:32 -0500
commitee9a396f2225b68766f44a643470d66fd6a2b266 (patch)
treefdf9aee999fbf86d82cece0cfa70560bccc44fb5
parentAdd option to set local client CA (diff)
downloadpounce-ee9a396f2225b68766f44a643470d66fd6a2b266.tar.gz
pounce-ee9a396f2225b68766f44a643470d66fd6a2b266.zip
Use the CAP_PREAD right
Required for the rewind call when loading the CA.
-rw-r--r--bounce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bounce.c b/bounce.c
index 7ea1c3f..ac30cd9 100644
--- a/bounce.c
+++ b/bounce.c
@@ -362,7 +362,7 @@ int main(int argc, char *argv[]) {
 
 	cap_rights_t saveRights, fileRights, sockRights, bindRights;
 	cap_rights_init(&saveRights, CAP_WRITE);
-	cap_rights_init(&fileRights, CAP_FCNTL, CAP_FSTAT, CAP_LOOKUP, CAP_READ);
+	cap_rights_init(&fileRights, CAP_FCNTL, CAP_FSTAT, CAP_LOOKUP, CAP_PREAD);
 	cap_rights_init(&sockRights, CAP_EVENT, CAP_RECV, CAP_SEND, CAP_SETSOCKOPT);
 	cap_rights_init(&bindRights, CAP_LISTEN, CAP_ACCEPT);
 	cap_rights_merge(&bindRights, &sockRights);
aracters into the bottom-right cell of the terminal. 2019-07-11Don't do carriage return on line feedJune McEnroe 2019-07-11Interpret 256color-style SGRsJune McEnroe 2019-07-11Use inline style rather than <b>, <i>, <u>June McEnroe 2019-07-11Factor out clearJune McEnroe 2019-07-11Add bright option to shottyJune McEnroe 2019-07-11Output <b>, <i>, <u> in shottyJune McEnroe 2019-07-10Ignore SM and RMJune McEnroe 2019-07-09Add shotty man page and build itJune McEnroe 2019-07-09Add up -cJune McEnroe 2019-07-09Add options for default colors to shottyJune McEnroe 2019-07-08Use char literals consistentlyJune McEnroe