]> git.proxmox.com Git - mirror_frr.git/commitdiff
ldpd: fix wrong indentation in the help menu
authorRenato Westphal <renato@opensourcerouting.org>
Tue, 3 Oct 2017 13:24:45 +0000 (10:24 -0300)
committerRenato Westphal <renato@opensourcerouting.org>
Tue, 3 Oct 2017 19:30:07 +0000 (16:30 -0300)
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>
ldpd/ldpd.c

index d31c575920031badfafe232a0439b06ae1174067..95cd4ba366f2dbb0e58edd3c688ed21be72eb085 100644 (file)
@@ -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;