diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-broadband-bearer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mm-broadband-bearer.c b/src/mm-broadband-bearer.c index 109e8741..c6234c12 100644 --- a/src/mm-broadband-bearer.c +++ b/src/mm-broadband-bearer.c @@ -1011,10 +1011,11 @@ connect (MMBaseBearer *self, return; } - /* If no multiplex setting given by the user, assume requested */ + /* If no multiplex setting given by the user, assume none (which is the only + * supported mode anyway) */ multiplex = mm_bearer_properties_get_multiplex (mm_base_bearer_peek_config (MM_BASE_BEARER (self))); if (multiplex == MM_BEARER_MULTIPLEX_SUPPORT_UNKNOWN) - multiplex = MM_BEARER_MULTIPLEX_SUPPORT_REQUESTED; + multiplex = MM_BEARER_MULTIPLEX_SUPPORT_NONE; /* The generic broadband bearer doesn't support multiplexing */ if (multiplex == MM_BEARER_MULTIPLEX_SUPPORT_REQUIRED) { |