diff options
author | Renato Westphal <renato@opensourcerouting.org> | 2017-10-03 15:24:45 +0200 |
---|---|---|
committer | Renato Westphal <renato@opensourcerouting.org> | 2017-10-03 21:30:07 +0200 |
commit | 7991dc323e9c06b0fa2f70bb2ff2c7694f5b6e93 (patch) | |
tree | f7544986d48a7a411122e550e81e20070a80db19 /ldpd | |
parent | Merge pull request #1111 from chiragshah6/mdev (diff) | |
download | frr-7991dc323e9c06b0fa2f70bb2ff2c7694f5b6e93.tar.xz frr-7991dc323e9c06b0fa2f70bb2ff2c7694f5b6e93.zip |
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 <renato@opensourcerouting.org>
Diffstat (limited to 'ldpd')
-rw-r--r-- | ldpd/ldpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/ldpd.c b/ldpd/ldpd.c index d31c57592..95cd4ba36 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; |