From e68592686e1bee3b834312e574d127cba72f604f Mon Sep 17 00:00:00 2001 From: david Date: Fri, 16 Nov 2012 21:40:59 +0000 Subject: [PATCH] Add missing newline to log. "Ignoring claimed %s uptime of %lu days\n" --- osscan2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osscan2.cc b/osscan2.cc index 5adfa52c0..a0cafbf6b 100644 --- a/osscan2.cc +++ b/osscan2.cc @@ -2407,7 +2407,7 @@ void HostOsScan::makeTSeqFP(HostOsScanStats *hss) { if (lastboot != 0.0 && (hss->seq_send_times[0].tv_sec - lastboot > 63072000)) { /* Up 2 years? Perhaps, but they're probably lying. */ if (o.debugging) { - log_write(LOG_STDOUT, "Ignoring claimed %s uptime of %lu days", + log_write(LOG_STDOUT, "Ignoring claimed %s uptime of %lu days\n", hss->target->targetipstr(), (hss->seq_send_times[0].tv_sec - hss->si.lastboot) / 86400); } lastboot = 0;