summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-11-15 14:32:48 +0000
committernicm <nicm@openbsd.org>2015-11-15 14:32:48 +0000
commite66f537b1fbfcf743c79cd78d7af658e377808d3 (patch)
tree73fcde95cb65fd7d894511e21573443d826f6965 /usr.bin/tmux/tmux.c
parentSimplify TIOCGWINSZ codeblock by removing support for SCO Unix. (diff)
downloadwireguard-openbsd-e66f537b1fbfcf743c79cd78d7af658e377808d3.tar.xz
wireguard-openbsd-e66f537b1fbfcf743c79cd78d7af658e377808d3.zip
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");