1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-23 22:59:20 +00:00

o Fixed a bug which caused Nmap to infer an improper distance against

some hosts when performaing OS detection against a group whose
  distance varies between members. [David, Fyodor]
This commit is contained in:
fyodor
2008-10-17 21:20:52 +00:00
parent 6e69be898a
commit 2c650269ec
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
# Nmap Changelog ($Id$); -*-text-*-
o Fixed a bug which caused Nmap to infer an improper distance against
some hosts when performaing OS detection against a group whose
distance varies between members. [David, Fyodor]
o Added a new NSE OpenSSL library with functions for multiprecision
integer arithmetics, hashing, HMAC, symmetric encryption and symmetric
decryption. [Sven]

View File

@@ -3659,7 +3659,7 @@ static void endRound(OsScanInfo *OSI, HostOsScan *HOS, int roundNum) {
for(hostI = OSI->incompleteHosts.begin();
hostI != OSI->incompleteHosts.end(); hostI++) {
distance = -1;
hsi = *hostI;
HOS->makeFP(hsi->hss);