diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-11-26 12:15:49 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-24 14:05:35 +0100 |
commit | 1b37ccc27aae240a2ceb59fa40d5c98fe473547b (patch) | |
tree | 392aeeb34470713ef2ef8e85b015cd144ec802ba | |
parent | ebe9a33411f09d2cc47b4eff317d68035cc114af (diff) |
broadband-modem-qmi: new profile settings not available in QMI protocol
At least not yet.
-rw-r--r-- | src/mm-broadband-modem-qmi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mm-broadband-modem-qmi.c b/src/mm-broadband-modem-qmi.c index 415e0426..68f84f73 100644 --- a/src/mm-broadband-modem-qmi.c +++ b/src/mm-broadband-modem-qmi.c @@ -5795,9 +5795,10 @@ modem_3gpp_profile_manager_check_format_finish (MMIfaceModem3gppProfileManager /* use default string comparison method */ if (apn_cmp) *apn_cmp = NULL; - /* we support everything! */ if (profile_cmp_flags) - *profile_cmp_flags = 0; + *profile_cmp_flags = (MM_3GPP_PROFILE_CMP_FLAGS_NO_ACCESS_TYPE_PREFERENCE | + MM_3GPP_PROFILE_CMP_FLAGS_NO_ROAMING_ALLOWANCE | + MM_3GPP_PROFILE_CMP_FLAGS_NO_PROFILE_SOURCE); return TRUE; } |