summaryrefslogtreecommitdiff
path: root/log-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'log-client.c')
-rw-r--r--log-client.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/log-client.c b/log-client.c
index 7e9fd61e7..7615a94f0 100644
--- a/log-client.c
+++ b/log-client.c
@@ -15,7 +15,7 @@
15 */ 15 */
16 16
17#include "includes.h" 17#include "includes.h"
18RCSID("$OpenBSD: log-client.c,v 1.9 2000/06/20 01:39:42 markus Exp $"); 18RCSID("$OpenBSD: log-client.c,v 1.10 2000/08/19 02:57:33 deraadt Exp $");
19 19
20#include "xmalloc.h" 20#include "xmalloc.h"
21#include "ssh.h" 21#include "ssh.h"
@@ -57,6 +57,5 @@ do_log(LogLevel level, const char *fmt, va_list args)
57 if (level == SYSLOG_LEVEL_DEBUG) 57 if (level == SYSLOG_LEVEL_DEBUG)
58 fprintf(stderr, "debug: "); 58 fprintf(stderr, "debug: ");
59 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args); 59 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
60 fprintf(stderr, "%s", msgbuf); 60 fprintf(stderr, "%s\r\n", msgbuf);
61 fprintf(stderr, "\r\n");
62} 61}