mirror of
https://github.com/nmap/nmap.git
synced 2026-06-24 10:12:22 +00:00
Fix some NULL fields in new AIX classes.
This commit is contained in:
parent
7f5f3f6b76
commit
a131b32e8a
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue