summaryrefslogtreecommitdiffstats
path: root/server-client.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-07-19 18:27:38 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-07-19 18:27:38 +0000
commit2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8 (patch)
tree71bde4e623041158fd3745e216093e578697d42c /server-client.c
parenta471b5de9c4b23b9d0f825066d8d8a93ac6f0cd9 (diff)
Send the \n to stdout with the message, not stderr... doh.
Diffstat (limited to 'server-client.c')
-rw-r--r--server-client.c2
1 files changed, 1 insertions, 1 deletions
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);
}