From 56408b69087e0566c475107e1b0b64ebdcdffbd5 Mon Sep 17 00:00:00 2001 From: fyodor Date: Thu, 5 May 2011 08:37:23 +0000 Subject: [PATCH] Changed a LOG_PLAIN message into a LOG_STDOUT since it is more of a real-time message than something you want in your report files (suggested by Justin Cacak) --- osscan2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osscan2.cc b/osscan2.cc index 607278879..d6d1773f1 100644 --- a/osscan2.cc +++ b/osscan2.cc @@ -3766,7 +3766,7 @@ static int os_scan_2(vector &Targets) { if (!plural) { (*(OSI->incompleteHosts.begin()))->target->NameIP(targetstr, sizeof(targetstr)); } else Snprintf(targetstr, sizeof(targetstr), "%d hosts", (int) OSI->numIncompleteHosts()); - log_write(LOG_PLAIN, "%s OS detection (try #%d) against %s\n", (itry == 0)? "Initiating" : "Retrying", itry + 1, targetstr); + log_write(LOG_STDOUT, "%s OS detection (try #%d) against %s\n", (itry == 0)? "Initiating" : "Retrying", itry + 1, targetstr); log_flush_all(); } startRound(OSI, HOS, itry);