summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/xterm/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/xterm/main.c b/app/xterm/main.c
index 7e6aafac3..7f48ffb89 100644
--- a/app/xterm/main.c
+++ b/app/xterm/main.c
@@ -2634,12 +2634,12 @@ main(int argc, char *argv[]ENVP_ARG)
if (data &&
(strstr(data, "exec-formatted") || strstr(data, "exec-selectable"))) {
- if (pledge("stdio rpath wpath cpath id proc exec tty", NULL) == -1) {
+ if (pledge("stdio rpath wpath id proc exec tty", NULL) == -1) {
xtermWarning("pledge\n");
exit(1);
}
} else {
- if (pledge("stdio rpath wpath cpath id proc tty", NULL) == -1) {
+ if (pledge("stdio rpath wpath id proc tty", NULL) == -1) {
xtermWarning("pledge\n");
exit(1);
}