In lib/bluetooth.c, it looks like batostr() is bugged (wrong bytes order), after comparison with ba2str(): char *batostr(const bdaddr_t *ba) sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X", ba->b[0], ba->b[1], ba->b[2], ba->b[3], ba->b[4], ba->b[5]); int ba2str(const bdaddr_t *ba, char *str) return sprintf(str, "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X", ba->b[5], ba->b[4], ba->b[3], ba->b[2], ba->b[1], ba->b[0]); This function is not called anywhere else in the repository, that is probably why the problem never showed up. Antoine -- 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