From 877f7db822fd8049e062e2516a7fb62931bc5320 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 27 May 2016 13:43:28 +0200 Subject: [PATCH] lldpcli: display "Unknown TLVs" with a space This should be an human readable string. --- src/client/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/display.c b/src/client/display.c index 5101371e..b4d8dd91 100644 --- a/src/client/display.c +++ b/src/client/display.c @@ -287,7 +287,7 @@ display_custom_tlvs(struct writer* w, lldpctl_atom_t* neighbor, int details) lldpctl_atom_foreach(custom_list, custom) { /* This tag gets added only once, if there are any custom TLVs */ if (!have_custom_tlvs) { - tag_start(w, "unknown-tlvs", "UnknownTLVs"); + tag_start(w, "unknown-tlvs", "Unknown TLVs"); have_custom_tlvs++; } len = 0; -- 2.39.5