From: DoHyun Pyun Date: Mon, 1 Oct 2018 00:19:53 +0000 (+0900) Subject: Fix the wrong matched error for "In progress" X-Git-Tag: submit/tizen/20180930.234221^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0ff271b2bba752a309db10051c52ed1f730fa13;p=platform%2Fcore%2Fapi%2Fbluetooth.git Fix the wrong matched error for "In progress" Change-Id: I9203f4cc7e5ce9e32bb0f8ccbe0191c36a2fc7e3 Signed-off-by: DoHyun Pyun --- diff --git a/src/bluetooth-common.c b/src/bluetooth-common.c index afdcadd..3e1b139 100644 --- a/src/bluetooth-common.c +++ b/src/bluetooth-common.c @@ -91,7 +91,7 @@ static bt_err2pub_table_t err2pub[] = { { BLUETOOTH_ERROR_ALREADY_CONNECT, BT_ERROR_ALREADY_DONE }, { BLUETOOTH_ERROR_NOT_PAIRED, BT_ERROR_REMOTE_DEVICE_NOT_BONDED }, { BLUETOOTH_ERROR_NOT_IN_OPERATION, BT_ERROR_NOT_IN_PROGRESS }, - { BLUETOOTH_ERROR_IN_PROGRESS, BT_ERROR_NOT_IN_PROGRESS }, + { BLUETOOTH_ERROR_IN_PROGRESS, BT_ERROR_NOW_IN_PROGRESS }, { BLUETOOTH_ERROR_DEVICE_BUSY, BT_ERROR_RESOURCE_BUSY }, { BLUETOOTH_ERROR_CANCEL, BT_ERROR_CANCELLED }, { BLUETOOTH_ERROR_CANCEL_BY_USER, BT_ERROR_CANCELLED },