|
|
stagit-index: remove unveil support for argv - stagit - static git page generator |
|
|
 |
git clone git://git.codemadness.org/stagit (git://git.codemadness.org) |
|
|
 |
Log |
|
|
 |
Files |
|
|
 |
Refs |
|
|
 |
README |
|
|
 |
LICENSE |
|
|
|
--- |
|
|
 |
commit dc0709f6f4f7e256e27272cb0b8611715caf1f3b |
|
|
 |
parent 174a763058f9a90831ab5a2aeb1c9bfbecdabf48 |
|
|
 |
Author: Hiltjo Posthuma <hiltjo@codemadness.org> (mailto://) |
application/vnd.lotus-organizer |
|
|
Date: Sat, 8 Aug 2020 20:01:05 +0200 |
|
|
|
|
|
|
|
stagit-index: remove unveil support for argv |
|
|
|
|
|
|
|
This can reach the unveil argument limits and it is not a good case for using |
|
|
|
unveil. |
|
|
|
|
|
|
|
Diffstat: |
|
|
|
M stagit-index.c | 4 ---- |
|
|
|
|
|
|
|
1 file changed, 0 insertions(+), 4 deletions(-) |
|
|
|
--- |
|
|
 |
diff --git a/stagit-index.c b/stagit-index.c |
|
|
|
@@ -154,10 +154,6 @@ main(int argc, char *argv[]) |
|
|
|
git_libgit2_init(); |
|
|
|
|
|
|
|
#ifdef __OpenBSD__ |
|
|
|
- for (i = 1; i < argc; i++) |
|
|
|
- if (unveil(argv[i], "r") == -1) |
|
|
|
- err(1, "unveil: %s", argv[i]); |
|
|
|
- |
|
|
|
if (pledge("stdio rpath", NULL) == -1) |
|
|
|
err(1, "pledge"); |
|
|
|
#endif |
|