AT: Allow test command for AT+CGMM

Change-Id: Ifbd6cb4dcfc4dee9b174eca60aaaac9de8968303
Reviewed-on: https://code.wireshark.org/review/28950
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Darien Spencer 2018-08-04 11:21:23 +03:00 committed by Anders Broman
parent 51c6fde9c7
commit 98484f6428
1 changed files with 1 additions and 1 deletions

View File

@ -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;