From 98484f642834b71d104cb94e9a239ba70b58fb90 Mon Sep 17 00:00:00 2001 From: Darien Spencer Date: Sat, 4 Aug 2018 11:21:23 +0300 Subject: [PATCH] AT: Allow test command for AT+CGMM Change-Id: Ifbd6cb4dcfc4dee9b174eca60aaaac9de8968303 Reviewed-on: https://code.wireshark.org/review/28950 Reviewed-by: Alexis La Goutte Petri-Dish: Alexis La Goutte Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- epan/dissectors/packet-at.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-at.c b/epan/dissectors/packet-at.c index a8945752ff..455c0df24c 100644 --- a/epan/dissectors/packet-at.c +++ b/epan/dissectors/packet-at.c @@ -377,7 +377,7 @@ static gboolean check_ccwa(gint role, guint16 type) { } static gboolean check_cgmm(gint role, guint16 type) { - if (role == ROLE_DTE && type == TYPE_ACTION_SIMPLY) return TRUE; + if (role == ROLE_DTE && (type == TYPE_ACTION_SIMPLY || type == TYPE_TEST)) return TRUE; if (role == ROLE_DCE && type == TYPE_RESPONSE) return TRUE; return FALSE;