diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-05-28 11:20:40 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-05-28 18:25:41 -0500 |
commit | 1b6369d1880ebfc7b343b47abc052fb42347de37 (patch) | |
tree | 100e0389a795afbea031d9bc157a2812e39bbb01 /src/call-waiting.c | |
parent | b7b890fdb2d7d11c3dc41a0cdc364e96836fb684 (diff) | |
download | ofono-1b6369d1880ebfc7b343b47abc052fb42347de37.tar.bz2 |
Fix CallWaiting ss request to query bearers better
Diffstat (limited to 'src/call-waiting.c')
-rw-r--r-- | src/call-waiting.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/call-waiting.c b/src/call-waiting.c index 312d9ac9..e91218fc 100644 --- a/src/call-waiting.c +++ b/src/call-waiting.c @@ -328,7 +328,7 @@ static gboolean cw_ss_control(struct ofono_modem *modem, int type, { struct call_waiting_data *cw = modem->call_waiting; DBusConnection *conn = dbus_gsm_connection(); - int cls = BEARER_CLASS_DEFAULT; + int cls = BEARER_CLASS_SS_DEFAULT; DBusMessage *reply; if (!cw) @@ -368,7 +368,7 @@ static gboolean cw_ss_control(struct ofono_modem *modem, int type, cw->ss_req_cls = cls; cw->pending = dbus_message_ref(msg); - cls |= BEARER_CLASS_DEFAULT; + cls = BEARER_CLASS_DEFAULT; switch (type) { case SS_CONTROL_TYPE_REGISTRATION: |