3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 10:29:03 +02:00

monitor: Make sure to print attribute type

This commit is contained in:
Denis Kenzior 2015-04-17 12:03:10 -05:00
parent be0cdde4e0
commit 835ae605d9

View File

@ -1371,6 +1371,8 @@ static void print_cipher_suite(unsigned int level, const char *label,
static void print_cipher_suites(unsigned int level, const char *label,
const void *data, uint16_t size)
{
print_attr(level, "%s:", label);
while (size >= 4) {
print_cipher_suite(level + 1, NULL, data, 4);
data += 4;