1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-17 13:09:02 +00:00

Increase the size of OS fingerprint attribute values from 128 to 256. Some

attributes are that big now.
This commit is contained in:
david
2008-11-12 19:46:32 +00:00
parent 1d582dfafc
commit e36cc5ceba

View File

@@ -165,7 +165,7 @@ struct ftpinfo {
struct AVal { struct AVal {
char *attribute; char *attribute;
char value[128]; char value[256];
struct AVal *next; struct AVal *next;
}; };