1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Update member name in comment.

This commit is contained in:
david
2011-10-28 10:55:17 +00:00
parent 7197d18d52
commit 6e423e861d

View File

@@ -116,17 +116,17 @@ class FingerPrintResults {
virtual ~FingerPrintResults();
double accuracy[MAX_FP_RESULTS]; /* Percentage of match (1.0 == perfect
match) in same order as pritns[] below */
match) in same order as matches[] below */
FingerMatch *matches[MAX_FP_RESULTS]; /* ptrs to matching references --
highest accuracy matches first */
int num_perfect_matches; /* Number of 1.0 accuracy matches in prints[] */
int num_matches; /* Total number of matches in prints[] */
int num_perfect_matches; /* Number of 1.0 accuracy matches in matches[] */
int num_matches; /* Total number of matches in matches[] */
int overall_results; /* OSSCAN_TOOMANYMATCHES, OSSCAN_NOMATCHES,
OSSCAN_SUCCESS, etc */
/* Ensures that the results are available and then returns them.
You should only call this AFTER all matching has been completed
(because results are cached and won't change if new prints[] are
(because results are cached and won't change if new matches[] are
added.) All OS Classes in the results will be unique, and if there
are any perfect (accuracy 1.0) matches, only those will be
returned */