summaryrefslogtreecommitdiff
path: root/src/sdpd-service.c
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2014-03-24 16:25:25 -0300
committerJohan Hedberg <johan.hedberg@intel.com>2014-03-24 22:02:55 +0200
commita515e9e04f027966a73d9ae50456d1fc4080795b (patch)
treed0fcd5ae50328cae166b6b093795d470608e9357 /src/sdpd-service.c
parent7da5efedaee989caf449be0335470510e3a3fd21 (diff)
downloadbluez-a515e9e04f027966a73d9ae50456d1fc4080795b.tar.gz
Replace bt_put_be16() by put_be16()
Diffstat (limited to 'src/sdpd-service.c')
-rw-r--r--src/sdpd-service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sdpd-service.c b/src/sdpd-service.c
index f76343676..e001c3048 100644
--- a/src/sdpd-service.c
+++ b/src/sdpd-service.c
@@ -463,7 +463,7 @@ success:
return 0;
invalid:
- bt_put_be16(SDP_INVALID_SYNTAX, rsp->data);
+ put_be16(SDP_INVALID_SYNTAX, rsp->data);
rsp->data_size = sizeof(uint16_t);
return -1;
@@ -506,7 +506,7 @@ int service_update_req(sdp_req_t *req, sdp_buf_t *rsp)
done:
p = rsp->data;
- bt_put_be16(status, p);
+ put_be16(status, p);
rsp->data_size = sizeof(uint16_t);
return status;
}
@@ -536,7 +536,7 @@ int service_remove_req(sdp_req_t *req, sdp_buf_t *rsp)
}
p = rsp->data;
- bt_put_be16(status, p);
+ put_be16(status, p);
rsp->data_size = sizeof(uint16_t);
return status;