diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-14 12:44:47 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-10-14 12:44:47 +0200 |
commit | cc4e7f6cfdd4b07f578f84d6994ce38ee811b288 (patch) | |
tree | 3ecfa2d3e22a8f5074b5c936f718a606fb17658a | |
parent | c8d715e5f031dec05d2ce79e2554be74c2a802fd (diff) |
shared-qmi: fix NAS SSP support check during supported caps loading
-rw-r--r-- | src/mm-shared-qmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-shared-qmi.c b/src/mm-shared-qmi.c index 9629fab7..d1a78d49 100644 --- a/src/mm-shared-qmi.c +++ b/src/mm-shared-qmi.c @@ -1000,7 +1000,7 @@ mm_shared_qmi_load_supported_capabilities (MMIfaceModem *self, * switching only when switching GSM/UMTS+CDMA/EVDO multimode devices, and only if * we have support for the commands doing it. */ - if (priv->feature_nas_technology_preference == FEATURE_SUPPORTED || priv->feature_nas_system_selection_preference == FEATURE_UNKNOWN) { + if (priv->feature_nas_technology_preference == FEATURE_SUPPORTED || priv->feature_nas_system_selection_preference == FEATURE_SUPPORTED) { if (mask == (MM_MODEM_CAPABILITY_GSM_UMTS | MM_MODEM_CAPABILITY_CDMA_EVDO)) { /* Multimode GSM/UMTS+CDMA/EVDO device switched to GSM/UMTS only */ single = MM_MODEM_CAPABILITY_GSM_UMTS; |