summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruser <user@mail.com>2025-07-09 22:25:08 -0400
committeruser <user@mail.com>2025-07-09 22:25:08 -0400
commit1071cdea96f8f468e188b98a63f26d77403de32d (patch)
tree37002a08ef422975b0feb278657d7790f4e2ee9e
parent0b3f07862cd1a71b859969459bc0428d3268d987 (diff)
add rpath to pledgeHEADmaster
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index b67ecec..7618233 100644
--- a/main.c
+++ b/main.c
@@ -6,7 +6,7 @@
int main() {
#ifdef __OpenBSD__
- if (pledge("inet stdio", NULL) == -1) {
+ if (pledge("rpath inet stdio", NULL) == -1) {
perror("pledge");
return 1;
}