Send the \n to stdout with the message, not stderr... doh.

This commit is contained in:
Nicholas Marriott 2010-07-19 18:27:38 +00:00
parent a471b5de9c
commit 2a0f3f0d79

View File

@ -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);
}