summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-11-15 14:32:49 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-11-15 14:32:49 +0000
commitd004024346c36617bdff81c69fcc6757e2c58f4b (patch)
treea1eb9bd0931d1d8ea3bdc4e87d0ab058fd34f99c /usr.bin/tmux/tmux.c
parent36c5aabe11ee1421096d830e88f762c43fe7268a (diff)
Accidentally turned off pledge, turn it back on.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r--usr.bin/tmux/tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c
index 5cdbd0b56c7..e07799a5dc5 100644
--- a/usr.bin/tmux/tmux.c
+++ b/usr.bin/tmux/tmux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.c,v 1.153 2015/11/14 09:41:07 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.154 2015/11/15 14:32:48 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -255,7 +255,7 @@ main(int argc, char **argv)
if (shell_cmd != NULL && argc != 0)
usage();
- if (0 && pledge("stdio rpath wpath cpath flock fattr unix sendfd recvfd "
+ if (pledge("stdio rpath wpath cpath flock fattr unix sendfd recvfd "
"proc exec tty ps", NULL) != 0)
err(1, "pledge");