From 2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 19 Jul 2010 18:27:38 +0000 Subject: [PATCH] Send the \n to stdout with the message, not stderr... doh. --- server-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-client.c b/server-client.c index 6dc0fd3a..f594f1e3 100644 --- a/server-client.c +++ b/server-client.c @@ -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); }