From 7ed9b0f8fbf71c88a9479cdb64640e73d8a64ef6 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 20 Jul 2010 17:36:03 +0000 Subject: [PATCH] Sync OpenBSD patchset 737: Send the \n to stdout with the message, not stderr... doh. --- server-client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-client.c b/server-client.c index 05949edd..e3a19a93 100644 --- a/server-client.c +++ b/server-client.c @@ -1,4 +1,4 @@ -/* $Id: server-client.c,v 1.35 2010-07-17 14:36:40 tcunha Exp $ */ +/* $Id: server-client.c,v 1.36 2010-07-20 17:36:03 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -694,7 +694,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); }