summaryrefslogtreecommitdiff
path: root/src/sdpd-request.c
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2014-03-24 16:25:26 -0300
committerJohan Hedberg <johan.hedberg@intel.com>2014-03-24 22:03:09 +0200
commitc729b661957cf316a4bea7a237d4e5f3f3139fcf (patch)
tree53e0491b8e45eb80271a231a810d91d67fc652ac /src/sdpd-request.c
parenta515e9e04f027966a73d9ae50456d1fc4080795b (diff)
downloadbluez-c729b661957cf316a4bea7a237d4e5f3f3139fcf.tar.gz
Replace bt_put_be32() by put_be32()
Diffstat (limited to 'src/sdpd-request.c')
-rw-r--r--src/sdpd-request.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sdpd-request.c b/src/sdpd-request.c
index 600237aa4..3e58c2206 100644
--- a/src/sdpd-request.c
+++ b/src/sdpd-request.c
@@ -212,7 +212,7 @@ static int extract_des(uint8_t *buf, int len, sdp_list_t **svcReqSeq, uint8_t *p
memcpy(&tmp, p, sizeof(tmp));
pElem = malloc(sizeof(uint32_t));
- bt_put_be32(tmp, pElem);
+ put_be32(tmp, pElem);
}
p += sizeof(uint32_t);
seqlen += sizeof(uint32_t);
@@ -442,7 +442,7 @@ static int service_search_req(sdp_req_t *req, sdp_buf_t *buf)
if (sdp_match_uuid(pattern, rec->pattern) > 0 &&
sdp_check_access(rec->handle, &req->device)) {
rsp_count++;
- bt_put_be32(rec->handle, pdata);
+ put_be32(rec->handle, pdata);
pdata += sizeof(uint32_t);
handleSize += sizeof(uint32_t);
}