diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-07-19 18:27:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-07-19 18:27:38 +0000 |
commit | 2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8 (patch) | |
tree | 71bde4e623041158fd3745e216093e578697d42c /server-client.c | |
parent | a471b5de9c4b23b9d0f825066d8d8a93ac6f0cd9 (diff) | |
download | rtmux-2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8.tar.gz rtmux-2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8.tar.bz2 rtmux-2a0f3f0d7981fc4fe4739f22f699a5a59a0b2bf8.zip |
Send the \n to stdout with the message, not stderr... doh.
Diffstat (limited to 'server-client.c')
-rw-r--r-- | server-client.c | 2 |
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); } |