1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-08 22:46:34 +00:00

spellcheck patch

This commit is contained in:
fyodor
2006-09-05 08:39:32 +00:00
parent c5e658cb51
commit 10ffae41cf
13 changed files with 13 additions and 22 deletions

View File

@@ -1735,11 +1735,7 @@ void HostOsScan::makeTSeqFP(HostOsScanStats *hss) {
seq_stddev /= hss->si.responses - 2;
/* Next we need to take the square root of this value */
#ifdef LINUX
seq_stddev = (unsigned int) (0.5 + sqrt(seq_stddev));
#else
seq_stddev = (unsigned int) (0.5 + pow(seq_stddev, 0.5));
#endif
/* Finally we take a binary logarithm, multiply by 8, and round
to get the final result */