diff --git a/CHANGELOG b/CHANGELOG index 5f3f779f9..2c4800340 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,9 +8,6 @@ o Created a Windows executable installer using the open source NSIS Thanks to Google SoC student Bo Jiang (jiangbo(a)brandeis.edu) for creating the initial version. -o Added runtime interaction support to Windows, thanks to a 2-line - (wow) patch from Gisle Vanem (giva(a)bgnett.no) - o Fixed a backward compatibility bug in which Nmap didn't recognize the --min_rtt_timeout option (it only recognized the newly hyphenated --min-rtt-timeout). Thanks to Joshua D. Abraham diff --git a/docs/nmap.1 b/docs/nmap.1 index f74cc245e..66055aad3 100644 --- a/docs/nmap.1 +++ b/docs/nmap.1 @@ -2,7 +2,7 @@ .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. -.TH "NMAP" "1" "01/23/2006" "" "Nmap Reference Guide" +.TH "NMAP" "1" "01/24/2006" "" "Nmap Reference Guide" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) diff --git a/docs/nmap.usage.txt b/docs/nmap.usage.txt index e017f44ee..520c7b495 100644 --- a/docs/nmap.usage.txt +++ b/docs/nmap.usage.txt @@ -1,4 +1,4 @@ -Nmap 3.98BETA1 ( http://www.insecure.org/nmap/ ) +Nmap 3.99 ( http://www.insecure.org/nmap/ ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. diff --git a/tty.cc b/tty.cc index 4fbd0cf3d..ba137b1b7 100644 --- a/tty.cc +++ b/tty.cc @@ -121,7 +121,10 @@ // We currently just have stub functions for Win32 that don't actually // do anything. Any volunteers to add real support? void tty_init() { return; } -bool keyWasPressed() { return _kbhit(); } +bool keyWasPressed() { + return false; + //return _kbhit(); +} void tty_done() { return; } #else