Properly htole16() PSM in sockaddr_l2cap

MFC after:	3 days
This commit is contained in:
Maksim Yevmenkin 2006-11-02 18:57:09 +00:00
parent 000a0f2a71
commit a85871a72c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163918

View File

@ -45,7 +45,7 @@
#include "bthid_config.h"
#include "bthidd.h"
static int32_t client_socket(bdaddr_p bdaddr, int32_t psm);
static int32_t client_socket(bdaddr_p bdaddr, uint16_t psm);
/*
* Get next config entry and create outbound connection (if required)
@ -212,7 +212,7 @@ client_connect(bthid_server_p srv, int32_t fd)
*/
static int
client_socket(bdaddr_p bdaddr, int32_t psm)
client_socket(bdaddr_p bdaddr, uint16_t psm)
{
struct sockaddr_l2cap l2addr;
int32_t s, m;
@ -243,7 +243,7 @@ client_socket(bdaddr_p bdaddr, int32_t psm)
}
memcpy(&l2addr.l2cap_bdaddr, bdaddr, sizeof(l2addr.l2cap_bdaddr));
l2addr.l2cap_psm = psm;
l2addr.l2cap_psm = htole16(psm);
if (connect(s, (struct sockaddr *) &l2addr, sizeof(l2addr)) < 0 &&
errno != EINPROGRESS) {