summaryrefslogtreecommitdiffstats
path: root/src/adapter.c
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2008-08-25 11:57:24 -0300
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2008-08-25 11:57:24 -0300
commitcec03bd88cff4730474e3df291ab1334cba042cd (patch)
treeb02d0497c0366f44cd12c8315ea1e1d01919389d /src/adapter.c
parent02dacdc326c29386bbae2574212ff029974444e7 (diff)
Cleanup: Removed unused function - adapter_auth_request_replied
Diffstat (limited to 'src/adapter.c')
-rw-r--r--src/adapter.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/adapter.c b/src/adapter.c
index e8e27715..4d5095c0 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -177,20 +177,6 @@ static int auth_req_cmp(const void *p1, const void *p2)
return bda ? bacmp(&pb1->bdaddr, bda) : -1;
}
-void adapter_auth_request_replied(struct adapter *adapter, bdaddr_t *dba)
-{
- GSList *l;
- struct pending_auth_info *auth;
-
- l = g_slist_find_custom(adapter->auth_reqs, dba, auth_req_cmp);
- if (!l)
- return;
-
- auth = l->data;
-
- auth->replied = TRUE;
-}
-
struct pending_auth_info *adapter_find_auth_request(struct adapter *adapter,
bdaddr_t *dba)
{