From 7991dc323e9c06b0fa2f70bb2ff2c7694f5b6e93 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Tue, 3 Oct 2017 10:24:45 -0300 Subject: [PATCH] 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 --- ldpd/ldpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5