diff options
Diffstat (limited to 'binding/telephony-binding.c')
-rw-r--r-- | binding/telephony-binding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binding/telephony-binding.c b/binding/telephony-binding.c index 5eb3dc2..10c00fc 100644 --- a/binding/telephony-binding.c +++ b/binding/telephony-binding.c @@ -72,7 +72,7 @@ static void last_dial(afb_req_t request) AFB_ERROR("dial: cannot dial with active call"); afb_req_fail(request, "active call", NULL); } else { - if (!ofono_voicecallmanager_last_dial(vcm)) { + if (ofono_voicecallmanager_last_dial(vcm)) { afb_req_success(request, NULL, NULL); } else { AFB_ERROR("dial: failed to dial number\n"); @@ -89,7 +89,7 @@ static void send_tones(afb_req_t request) AFB_ERROR("send_tones: cannot send tone without active call"); afb_req_fail(request, "there is no active call", NULL); } else { - if (!ofono_voicecallmanager_send_tones(vcm, value)) { + if (ofono_voicecallmanager_send_tones(vcm, value)) { afb_req_success(request, NULL, NULL); } else { AFB_ERROR("send_tones: failed to send tone\n"); |