From: Vincent Bernat Date: Fri, 17 Nov 2023 12:19:34 +0000 (+0100) Subject: daemon/lldpd: fix capitalization in help output X-Git-Tag: 1.0.18~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3071b40a47202e80db836869854c8f11057ef379;p=thirdparty%2Flldpd.git daemon/lldpd: fix capitalization in help output --- diff --git a/src/client/lldpcli.c b/src/client/lldpcli.c index 35147eef..1c7e6dd6 100644 --- a/src/client/lldpcli.c +++ b/src/client/lldpcli.c @@ -79,7 +79,7 @@ usage() fprintf(stderr, "\n"); - fprintf(stderr, "see manual page lldpcli(8) for more information\n"); + fprintf(stderr, "See manual page lldpcli(8) for more information\n"); exit(1); } diff --git a/src/daemon/lldpd.c b/src/daemon/lldpd.c index fee44d23..1932f4f4 100644 --- a/src/daemon/lldpd.c +++ b/src/daemon/lldpd.c @@ -140,7 +140,7 @@ usage(void) fprintf(stderr, "\n"); #endif - fprintf(stderr, "see manual page lldpd(8) for more information\n"); + fprintf(stderr, "See manual page lldpd(8) for more information\n"); exit(1); }