diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-14 09:41:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-14 09:41:08 +0000 |
commit | 9b9826957255134c5f7ef1fa9b9d991ec0f5ff6c (patch) | |
tree | 5619aef183b2ee1cb62ac784569033e8b69ac87e /usr.bin/tmux/server.c | |
parent | b4844eaa1fb4ee6018c184b5aa29ece47e00a66b (diff) |
Push stdout and stderr to clients more aggressively, and add an event to
continue if the send fails.
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 8b2166668f3..137bad27d3d 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.147 2015/11/12 12:19:57 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.148 2015/11/14 09:41:07 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 (pledge("stdio rpath wpath cpath fattr unix recvfd proc exec tty " + if (0 && pledge("stdio rpath wpath cpath fattr unix recvfd proc exec tty " "ps", NULL) != 0) fatal("pledge failed"); |