From 835ae605d900c6a8e30c07f886d29b904ff617c4 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 17 Apr 2015 12:03:10 -0500 Subject: [PATCH] monitor: Make sure to print attribute type --- monitor/nlmon.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monitor/nlmon.c b/monitor/nlmon.c index dfd626f7..401d6d48 100644 --- a/monitor/nlmon.c +++ b/monitor/nlmon.c @@ -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;