diff options
author | Jeevaka Badrappan <jeevaka.badrappan@elektrobit.com> | 2011-01-26 14:17:52 -0800 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2011-01-26 16:38:15 -0600 |
commit | 12c3cf6969714b2eca242c4616db23121ad8673a (patch) | |
tree | 46bed1ab70fd01b187537ce9567b5c2bb7374777 /src | |
parent | 0be9e23a90e5862d7a006614129ac05f777c2838 (diff) | |
download | ofono-12c3cf6969714b2eca242c4616db23121ad8673a.tar.bz2 |
voicecall: remove ofono_cug_option
Diffstat (limited to 'src')
-rw-r--r-- | src/voicecall.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/voicecall.c b/src/voicecall.c index e6bfe041..62467871 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -1327,8 +1327,7 @@ static DBusMessage *manager_dial(DBusConnection *conn, string_to_phone_number(number, &ph); - vc->driver->dial(vc, &ph, clir, OFONO_CUG_OPTION_DEFAULT, - manager_dial_callback, vc); + vc->driver->dial(vc, &ph, clir, manager_dial_callback, vc); return NULL; } @@ -2463,7 +2462,7 @@ static void dial_request_cb(const struct ofono_error *error, void *data) static void dial_request(struct ofono_voicecall *vc) { vc->driver->dial(vc, &vc->dial_req->ph, OFONO_CLIR_OPTION_DEFAULT, - OFONO_CUG_OPTION_DEFAULT, dial_request_cb, vc); + dial_request_cb, vc); } static void dial_req_disconnect_cb(const struct ofono_error *error, void *data) |