diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2018-07-11 20:28:42 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2020-07-14 15:52:42 +0200 |
commit | a858ac104a363ca37bb4fac3869aadc1da633ad7 (patch) | |
tree | 985618daea79c66b427d85acab66066868d129b4 | |
parent | b8ed27767b6287b6b6cf812c634e225d05674385 (diff) |
pledges for session can be tighten a bit now.
-rw-r--r-- | xenodm/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xenodm/session.c b/xenodm/session.c index 0ce4ae3..99ed59b 100644 --- a/xenodm/session.c +++ b/xenodm/session.c @@ -305,7 +305,7 @@ StartClient ( pid_t pid; struct passwd* pwd; - if (pledge("stdio rpath wpath cpath fattr proc getpw id exec dns unix inet", NULL) != 0) + if (pledge("stdio rpath wpath cpath fattr proc getpw id exec dns", NULL) != 0) exit(25); if (vinfo->argv) { |