Skip to content
Snippets Groups Projects
Commit 4709397b authored by Jakob Olsson's avatar Jakob Olsson
Browse files

cntlr_map_debug: use big endian buffer macros

parent c8073d3d
Branches
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ struct tlv_assoc_client {
MAC2STR(data));
data += 6;
memcpy(&num_client, data, 2);
num_client = BUF_GET_BE16(data);
data += 2;
trace("\t\tassoc_clients_nr: %u\n", num_client);
......@@ -172,7 +172,7 @@ struct tlv_assoc_client {
MAC2STR(data));
data += 6;
memcpy(&conntime, data, 2);
conntime = BUF_GET_BE16(data);
data += 2;
trace("\t\t\tuptime: 0x%04x\n", conntime);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment