From fa68d91869844dc8b829dacb296dc430982832ec Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Sun, 11 Sep 2011 15:02:25 +0200 Subject: log: remove the annoying \n between date and message --- src/log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/log.c b/src/log.c index 87a0fb8..7e60aee 100644 --- a/src/log.c +++ b/src/log.c @@ -91,9 +91,9 @@ static void do_ssh_log(struct ssh_common_struct *common, rc = current_timestring(1, date, sizeof(date)); if (rc == 0) { - fprintf(stderr, "[%s, %d] %s\n", date, verbosity, function); + fprintf(stderr, "[%s, %d] %s", date, verbosity, function); } else { - fprintf(stderr, "[%d] %s\n", verbosity, function); + fprintf(stderr, "[%d] %s", verbosity, function); } fprintf(stderr, " %s\n", buffer); } -- cgit