diff options
author | nicm <nicm> | 2015-11-15 14:32:48 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-15 14:32:48 +0000 |
commit | a582b622879714b0a100e8c7d3054f5a03476ca1 (patch) | |
tree | 75526feb1593c2c6a20b5a0658daee8bd8128ade /server.c | |
parent | 14d90e4901ef943e57e5dada7a0f53b2dc208571 (diff) | |
download | rtmux-a582b622879714b0a100e8c7d3054f5a03476ca1.tar.gz rtmux-a582b622879714b0a100e8c7d3054f5a03476ca1.tar.bz2 rtmux-a582b622879714b0a100e8c7d3054f5a03476ca1.zip |
Accidentally turned off pledge, turn it back on.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |