From 4c13088d1e2a24b967a30dc3a2c5bd152bf0d1ca Mon Sep 17 00:00:00 2001 From: david Date: Fri, 10 Apr 2009 19:08:48 +0000 Subject: [PATCH] Use "Host is up.", not "Host appears to be up." to match Nmap output. --- ndiff/ndiff | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ndiff/ndiff b/ndiff/ndiff index 73c558605..af86c0288 100755 --- a/ndiff/ndiff +++ b/ndiff/ndiff @@ -483,11 +483,11 @@ class HostDiff(object): # State. if self.state_changed: if host_a.state is not None: - print >> f, u"-Host appears to be %s." % host_a.state + print >> f, u"-Host is %s." % host_a.state if host_b.state is not None: - print >> f, u"+Host appears to be %s." % host_b.state + print >> f, u"+Host is %s." % host_b.state elif verbose: - print >> f, u" Host appears to be %s." % host_b.state + print >> f, u" Host is %s." % host_b.state # Extraports. if self.extraports_changed: