summaryrefslogtreecommitdiff
path: root/btio
diff options
context:
space:
mode:
authorSantiago Carot-Nemesio <sancane@gmail.com>2011-12-05 12:54:45 +0100
committerJohan Hedberg <johan.hedberg@intel.com>2011-12-08 14:23:04 +0200
commit14803c4e4fafbce64b00e56926b0eb0092fdd12f (patch)
tree7c7a262828c4fa6d17691eb18f84f65e408a0ec0 /btio
parentb8f8ed5c61759261d5ed365d1fe22d25aa54046a (diff)
downloadbluez-14803c4e4fafbce64b00e56926b0eb0092fdd12f.tar.gz
btio: Fix byte order conversion when getting L2CAP CID
The L2CAP CID is passed and received in little endian byte order through the socket interface so a conversion is in place before passing it onwards.
Diffstat (limited to 'btio')
-rw-r--r--btio/btio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/btio/btio.c b/btio/btio.c
index f8c5cc70d..0d177a3ab 100644
--- a/btio/btio.c
+++ b/btio/btio.c
@@ -886,7 +886,7 @@ static gboolean l2cap_get(int sock, GError **err, BtIOOption opt1,
break;
case BT_IO_OPT_CID:
*(va_arg(args, uint16_t *)) = src.l2_cid ?
- src.l2_cid : dst.l2_cid;
+ btohs(src.l2_cid) : btohs(dst.l2_cid);
break;
case BT_IO_OPT_OMTU:
*(va_arg(args, uint16_t *)) = l2o.omtu;