commit 25c8dfbdaa856cfe0088eceb490d65eea24f200c
parent 5a5d9fd0c222ebf2adfff4afa138e744cc40e61e
Author: Joris Vink <joris@coders.se>
Date: Wed, 18 Jul 2018 15:14:07 +0200
missing rpath pledge for openbsd
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/keymgr.c b/src/keymgr.c
@@ -117,7 +117,7 @@ kore_keymgr_run(void)
last_seed = 0;
#if defined(__OpenBSD__)
- if (pledge("stdio", NULL) == -1)
+ if (pledge("stdio rpath", NULL) == -1)
fatal("failed to pledge keymgr process");
#endif