From 6ec43f0e94823ce1cd27071c206ad8ed7efdaa78 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 19 Jul 2010 18:27:38 +0000 Subject: [PATCH] Send the \n to stdout with the message, not stderr... doh. --- usr.bin/tmux/server-client.c | 4 ++-- 1 file 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 @@ -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); } -- 2.20.1