diff options
author | 2010-07-19 18:27:38 +0000 | |
---|---|---|
committer | 2010-07-19 18:27:38 +0000 | |
commit | 6ec43f0e94823ce1cd27071c206ad8ed7efdaa78 (patch) | |
tree | 5ada88328eaf3a1890bcdefde41b18f9288ac985 /usr.bin/tmux/server-client.c | |
parent | Fix handling of hidden symbols on hppa. Patch from upstream (Alan Modra). (diff) | |
download | wireguard-openbsd-6ec43f0e94823ce1cd27071c206ad8ed7efdaa78.tar.xz wireguard-openbsd-6ec43f0e94823ce1cd27071c206ad8ed7efdaa78.zip |
Send the \n to stdout with the message, not stderr... doh.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r-- | usr.bin/tmux/server-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index 63180f82aa1..195a6db4147 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.34 2010/07/11 17:06:45 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.35 2010/07/19 18:27:38 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -695,7 +695,7 @@ server_client_msg_info(struct cmd_ctx *ctx, const char *fmt, ...) vfprintf(ctx->cmdclient->stdout_file, fmt, ap); va_end(ap); - fputc('\n', ctx->cmdclient->stderr_file); + fputc('\n', ctx->cmdclient->stdout_file); fflush(ctx->cmdclient->stdout_file); } |