]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
lldpcli: display "Unknown TLVs" with a space
authorVincent Bernat <vincent@bernat.im>
Fri, 27 May 2016 11:43:28 +0000 (13:43 +0200)
committerVincent Bernat <vincent@bernat.im>
Fri, 27 May 2016 11:43:28 +0000 (13:43 +0200)
This should be an human readable string.

src/client/display.c

index 5101371e044d92312d6a92a7a390eeeca842d82e..b4d8dd91b38febb3730156aa72991006bd6dc0c4 100644 (file)
@@ -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;