From b2ed1b1ac486a049c42a5dc2ae48b255ce617baf Mon Sep 17 00:00:00 2001 From: Santiago Carot-Nemesio Date: Mon, 5 Dec 2011 12:54:45 +0100 Subject: 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. --- btio/btio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'btio') diff --git a/btio/btio.c b/btio/btio.c index f8c5cc70..0d177a3a 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; -- cgit v1.2.3