From 972fc8cc7181e503f90dcfae53d35602a562afa2 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Wed, 10 Dec 2008 17:14:46 +0200 Subject: Fix AT+NREC API Remove disable from the function names since there now is the boolean "enable" parameter. --- audio/telephony-maemo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/telephony-maemo.c') diff --git a/audio/telephony-maemo.c b/audio/telephony-maemo.c index 997e4652..6388f56f 100644 --- a/audio/telephony-maemo.c +++ b/audio/telephony-maemo.c @@ -760,11 +760,11 @@ void telephony_call_hold_req(void *telephony_device, const char *cmd) telephony_call_hold_rsp(telephony_device, CME_ERROR_NONE); } -void telephony_disable_nr_and_ec_req(void *telephony_device, gboolean enable) +void telephony_nr_and_ec_req(void *telephony_device, gboolean enable) { debug("telephony-maemo: got %s NR and EC request", enable ? "enable" : "disable"); - telephony_disable_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE); + telephony_nr_and_ec_rsp(telephony_device, CME_ERROR_NONE); } static void handle_incoming_call(DBusMessage *msg) -- cgit