diff options
author | 2015-11-15 14:32:48 +0000 | |
---|---|---|
committer | 2015-11-15 14:32:48 +0000 | |
commit | e66f537b1fbfcf743c79cd78d7af658e377808d3 (patch) | |
tree | 73fcde95cb65fd7d894511e21573443d826f6965 /usr.bin/tmux/server.c | |
parent | Simplify TIOCGWINSZ codeblock by removing support for SCO Unix. (diff) | |
download | wireguard-openbsd-e66f537b1fbfcf743c79cd78d7af658e377808d3.tar.xz wireguard-openbsd-e66f537b1fbfcf743c79cd78d7af658e377808d3.zip |
Accidentally turned off pledge, turn it back on.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index 137bad27d3d..03aa14fd681 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.148 2015/11/14 09:41:07 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.149 2015/11/15 14:32:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -175,7 +175,7 @@ server_start(struct event_base *base, int lockfd, char *lockfile) if (debug_level > 3) tty_create_log(); - if (0 && pledge("stdio rpath wpath cpath fattr unix recvfd proc exec tty " + if (pledge("stdio rpath wpath cpath fattr unix recvfd proc exec tty " "ps", NULL) != 0) fatal("pledge failed"); |