You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
373 B

--- a/libnetutil/netutil.cc
+++ b/libnetutil/netutil.cc
@@ -2571,7 +2571,7 @@ const char *ippackethdrinfo(const u8 *packet, u32 len, int detail) {
/* CASE 4: where we (finally!) have a full 20 byte TCP header so we can
* safely print all fields */
- else { /* if (datalen >= 20) */
+ else if (datalen >= 20) {
/* TCP Flags */
p = tflags;