From: Vincent Bernat Date: Fri, 27 May 2016 11:43:28 +0000 (+0200) Subject: lldpcli: display "Unknown TLVs" with a space X-Git-Tag: 0.9.4~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=877f7db822fd8049e062e2516a7fb62931bc5320;p=thirdparty%2Flldpd.git lldpcli: display "Unknown TLVs" with a space This should be an human readable string. --- 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;