From: Renato Westphal Date: Tue, 3 Oct 2017 13:24:45 +0000 (-0300) Subject: ldpd: fix wrong indentation in the help menu X-Git-Tag: frr-4.0-dev~247^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=7991dc323e9c06b0fa2f70bb2ff2c7694f5b6e93;p=mirror%2Ffrr.git ldpd: fix wrong indentation in the help menu The -n option was not aligned with the other ones: % ldpd --help [snip] -A, --vty_addr Set vty's bind address -P, --vty_port Set vty's port number --ctl_socket Override ctl socket path -n, --instance Instance id Signed-off-by: Renato Westphal --- diff --git a/ldpd/ldpd.c b/ldpd/ldpd.c index d31c575920..95cd4ba366 100644 --- a/ldpd/ldpd.c +++ b/ldpd/ldpd.c @@ -206,7 +206,7 @@ main(int argc, char *argv[]) frr_preinit(&ldpd_di, argc, argv); frr_opt_add("LEn:", longopts, " --ctl_socket Override ctl socket path\n" - "-n, --instance Instance id\n"); + " -n, --instance Instance id\n"); while (1) { int opt;