From: Vincent Bernat Date: Sun, 15 Oct 2023 17:38:49 +0000 (+0200) Subject: lldpcli: fix capitalization X-Git-Tag: 1.0.18~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6541a9a34f79d62aae6658ab27d1613774755d5;p=thirdparty%2Flldpd.git lldpcli: fix capitalization --- diff --git a/src/client/display.c b/src/client/display.c index c59c4788..a050432d 100644 --- a/src/client/display.c +++ b/src/client/display.c @@ -426,17 +426,17 @@ display_port(struct writer *w, lldpctl_atom_t *port, int details) lldpctl_atom_get_int(dot3_power, lldpctl_k_dot3_power_devicetype); if (devicetype > 0) { tag_start(w, "power", "MDI Power"); - tag_attr(w, "supported", "supported", + tag_attr(w, "supported", "Supported", (lldpctl_atom_get_int(dot3_power, lldpctl_k_dot3_power_supported) > 0) ? "yes" : "no"); - tag_attr(w, "enabled", "enabled", + tag_attr(w, "enabled", "Enabled", (lldpctl_atom_get_int(dot3_power, lldpctl_k_dot3_power_enabled) > 0) ? "yes" : "no"); - tag_attr(w, "paircontrol", "pair control", + tag_attr(w, "paircontrol", "Pair control", (lldpctl_atom_get_int(dot3_power, lldpctl_k_dot3_power_paircontrol) > 0) ? "yes" :