changeset 32:f6bb790e186a

tfo-trace-msg: don't reject long REQ/ACK messages for decoding
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 28 Aug 2024 06:57:17 +0000
parents 5f98c5cae4ea
children e828468b0afd
files tfo/tfo-trace-msg.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tfo/tfo-trace-msg.c	Wed Aug 28 06:23:21 2024 +0000
+++ b/tfo/tfo-trace-msg.c	Wed Aug 28 06:57:17 2024 +0000
@@ -96,7 +96,7 @@
 process_tfo_req_ack(reqack)
 	char *reqack;
 {
-	if (is_ext_count != 2)
+	if (is_ext_count < 2)
 		return;
 	if (is_ext_words[0] != 0x5394B)		/* GSM System ID */
 		return;