1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 01:19:03 +00:00

Fix some NULL fields in new AIX classes.

This commit is contained in:
david
2011-09-30 07:17:36 +00:00
parent 7f5f3f6b76
commit a131b32e8a

View File

@@ -2639,7 +2639,7 @@ std::vector<FingerMatch> load_fp_matches() {
match.line = -1;
match.OS_name = (char *) "IBM AIX 7.1";
{
OS_Classification osclass = {"IBM", "AIX", NULL, NULL};
OS_Classification osclass = {"IBM", "AIX", "7.X", "general purpose"};
match.OS_class.push_back(osclass);
}
matches.push_back(match);
@@ -2659,7 +2659,7 @@ std::vector<FingerMatch> load_fp_matches() {
match.line = -1;
match.OS_name = (char *) "IBM AIX 6.1 - 7.1";
{
OS_Classification osclass = {"IBM", "AIX", NULL, NULL};
OS_Classification osclass = {"IBM", "AIX", "7.X", "general purpose"};
match.OS_class.push_back(osclass);
}
{