Fix byte order for MGMT_OP_ADD_ADVERTISING flags --- src/advertising.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/advertising.c b/src/advertising.c index d56b7a2..8c249d1 100644 --- a/src/advertising.c +++ b/src/advertising.c @@ -500,7 +500,7 @@ static DBusMessage *refresh_advertisement(struct advertisement *ad) return btd_error_failed(ad->reg, "Failed"); } - cp->flags = flags; + cp->flags = htobl(flags); cp->instance = ad->instance; cp->adv_data_len = adv_data_len; memcpy(cp->data, adv_data, adv_data_len); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html