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

Whitespace.

This commit is contained in:
david
2012-03-07 18:23:32 +00:00
parent 4a75312e83
commit 3f0f79b1b4

View File

@@ -244,7 +244,8 @@ void FingerPrintResults::populateClassification() {
// Then we have to add it ... first ensure we have room
if (OSR.OSC_num_matches == MAX_FP_RESULTS) {
// Out of space ... if the accuracy of this one is 100%, we have a problem
if (accuracy[printno] == 1.0) OSR.overall_results = OSSCAN_TOOMANYMATCHES;
if (accuracy[printno] == 1.0)
OSR.overall_results = OSSCAN_TOOMANYMATCHES;
return;
}
@@ -258,7 +259,8 @@ void FingerPrintResults::populateClassification() {
// OK, we will add the new class
OSR.OSC[OSR.OSC_num_matches] = &*osclass;
OSR.OSC_Accuracy[OSR.OSC_num_matches] = accuracy[printno];
if (printno < num_perfect_matches) OSR.OSC_num_perfect_matches++;
if (printno < num_perfect_matches)
OSR.OSC_num_perfect_matches++;
OSR.OSC_num_matches++;
}
}