aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2019-10-14 12:44:47 +0200
committerAleksander Morgado <aleksander@aleksander.es>2019-10-14 12:44:47 +0200
commitcc4e7f6cfdd4b07f578f84d6994ce38ee811b288 (patch)
tree3ecfa2d3e22a8f5074b5c936f718a606fb17658a /src
parentc8d715e5f031dec05d2ce79e2554be74c2a802fd (diff)
shared-qmi: fix NAS SSP support check during supported caps loading
Diffstat (limited to 'src')
-rw-r--r--src/mm-shared-qmi.c2
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;