From: nicm Date: Mon, 19 Jul 2010 18:27:38 +0000 (+0000) Subject: Send the \n to stdout with the message, not stderr... doh. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6ec43f0e94823ce1cd27071c206ad8ed7efdaa78;p=openbsd Send the \n to stdout with the message, not stderr... doh. --- 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); }