diff --git a/CHANGELOG b/CHANGELOG index a42ababaf..f9bc7c622 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # Nmap Changelog ($Id$); -*-text-*- +o [Ndiff] Fixed an output line that wasn't being redirected to a file + when all other output was. [Daniel Miller] + Nmap 5.50 [2011-01-28] o [Zenmap] Added a new script selection interface, allowing you to diff --git a/ndiff/ndiff b/ndiff/ndiff index 657bce9ab..b7f324f7e 100755 --- a/ndiff/ndiff +++ b/ndiff/ndiff @@ -425,7 +425,7 @@ class ScanDiff(object): print >> f, u" %s" % banner_a for host in self.hosts: - print + print >> f h_diff = self.host_diffs[host] h_diff.print_text(f)