From 424981b064a70bc00ff5ac324a1996c2cda15372 Mon Sep 17 00:00:00 2001 From: fyodor Date: Sat, 11 Aug 2007 04:32:07 +0000 Subject: [PATCH] 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' --- nmap.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nmap.cc b/nmap.cc index 3953706ee..05e288720 100644 --- a/nmap.cc +++ b/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: