From: Vincent Bernat Date: Sun, 6 Nov 2011 09:24:28 +0000 (+0100) Subject: Fix a missing semi colon. X-Git-Tag: 0.5.5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbda1f9f672e2d0e3da64a463c52280566fc9f75;p=thirdparty%2Flldpd.git Fix a missing semi colon. --- diff --git a/src/lldpd.c b/src/lldpd.c index ce373483..6f592d61 100644 --- a/src/lldpd.c +++ b/src/lldpd.c @@ -115,7 +115,7 @@ usage(void) fprintf(stderr, "-S descr Override the default system description.\n"); fprintf(stderr, "-m IP Specify the management address of this system.\n"); fprintf(stderr, "-H mode Specify the behaviour when detecting multiple neighbors.\n"); - fprintf(stderr, "-I iface Limit interfaces to use.\n") + fprintf(stderr, "-I iface Limit interfaces to use.\n"); #ifdef ENABLE_LLDPMED fprintf(stderr, "-M class Enable emission of LLDP-MED frame. 'class' should be one of:\n"); fprintf(stderr, " 1 Generic Endpoint (Class I)\n");