From 82f91f321788689ca527405ed7e84a44c8c03f06 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Mon, 22 Oct 2012 18:57:42 +0200 Subject: [PATCH] iface-modem: when playing with bands is not supported, use 'unknown' --- src/mm-iface-modem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mm-iface-modem.c b/src/mm-iface-modem.c index 79f54aab..e7bfb969 100644 --- a/src/mm-iface-modem.c +++ b/src/mm-iface-modem.c @@ -3638,9 +3638,9 @@ interface_initialization_step (InitializationContext *ctx) return; } - /* Loading supported bands not implemented, default to ANY */ - mm_gdbus_modem_set_supported_bands (ctx->skeleton, mm_common_build_bands_any ()); - mm_gdbus_modem_set_bands (ctx->skeleton, mm_common_build_bands_any ()); + /* Loading supported bands not implemented, default to UNKNOWN */ + mm_gdbus_modem_set_supported_bands (ctx->skeleton, mm_common_build_bands_unknown ()); + mm_gdbus_modem_set_bands (ctx->skeleton, mm_common_build_bands_unknown ()); } g_array_unref (supported_bands);