mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
merge soc07 r4982 - Fixing a small bug relating to 2nd gen osdetection output for tcp timestamp sequences. 'ERROR, WTF?' was being printed in XML because TS_SEQ_OTHER_NUM was omitted from tsseqclass2ascii(). Now it just prints 'other'
This commit is contained in:
parent
f0f053433f
commit
424981b064
1 changed files with 2 additions and 0 deletions
2
nmap.cc
2
nmap.cc
|
|
@ -2355,6 +2355,8 @@ char *tsseqclass2ascii(int seqclass) {
|
|||
return "100HZ";
|
||||
case TS_SEQ_1000HZ:
|
||||
return "1000HZ";
|
||||
case TS_SEQ_OTHER_NUM:
|
||||
return "other";
|
||||
case TS_SEQ_UNSUPPORTED:
|
||||
return "none returned (unsupported)";
|
||||
case TS_SEQ_UNKNOWN:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue