diff options
author | DoHyun Pyun <dh79.pyun@samsung.com> | 2012-09-10 13:01:59 +0900 |
---|---|---|
committer | DoHyun Pyun <dh79.pyun@samsung.com> | 2012-09-10 13:01:59 +0900 |
commit | ac9daa343315203d097a8b12bd50b952c9ee7184 (patch) | |
tree | 532852bcafec2c1c5f47fd050ad8c48bd76da0eb | |
parent | c4dc501d163e6a04d0ae7ff345fce0a92b8159b3 (diff) | |
download | bluetooth-ac9daa343315203d097a8b12bd50b952c9ee7184.tar.gz bluetooth-ac9daa343315203d097a8b12bd50b952c9ee7184.tar.bz2 bluetooth-ac9daa343315203d097a8b12bd50b952c9ee7184.zip |
Remove the code to unset event (BT_EVENT_RFCOMM_CONNECTION_REQUESTED)
[Comment] We should not remove the event callback
Change-Id: I9d27a7d87f5674e181d3494198e692853d1ad191
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | packaging/capi-network-bluetooth.spec | 2 | ||||
-rw-r--r-- | src/bluetooth-socket.c | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index ec84732..a36b115 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +capi-network-bluetooth (0.1.13-1) unstable; urgency=low + + * Tagging and upload the package + * Git: slp/api/bluetooth + * Tag: capi-network-bluetooth_0.1.13-1 + + -- DoHyun Pyun <dh79.pyun@samsung.com> Mon, 10 Sep 2012 12:56:50 +0900 + capi-network-bluetooth (0.1.12-1) unstable; urgency=low * Tagging and upload the package diff --git a/packaging/capi-network-bluetooth.spec b/packaging/capi-network-bluetooth.spec index 30c618d..d0de1aa 100644 --- a/packaging/capi-network-bluetooth.spec +++ b/packaging/capi-network-bluetooth.spec @@ -1,7 +1,7 @@ #sbs-git:slp/api/bluetooth capi-network-bluetooth 0.1.0 686c444083e4197845c768e5dd034022b1dfa250 Name: capi-network-bluetooth Summary: Network Bluetooth Framework -Version: 0.1.12 +Version: 0.1.13 Release: 1 Group: TO_BE/FILLED_IN License: TO BE FILLED IN diff --git a/src/bluetooth-socket.c b/src/bluetooth-socket.c index 62296a2..e0563be 100644 --- a/src/bluetooth-socket.c +++ b/src/bluetooth-socket.c @@ -108,8 +108,6 @@ int bt_socket_accept(int socket_fd, int *connected_socket_fd) LOGE("[%s] %s(0x%08x)", __FUNCTION__, _bt_convert_error_to_string(error_code), error_code); } - _bt_unset_cb(BT_EVENT_RFCOMM_CONNECTION_REQUESTED); - return error_code; } |