diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-06-21 21:00:18 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-06-21 21:00:18 +0200 |
commit | 550fc9afaf3bbc83a2ec210d318dcc07d19a7927 (patch) | |
tree | d94b3b22b20894af32362997a1d8eb98a73205a5 | |
parent | a3b1830874f703f1cf8c546ab3143b3c50aec76f (diff) |
cli_show_help: allow for wider commands
-rw-r--r-- | libcli.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -313,7 +313,7 @@ int cli_show_help(struct cli_def *cli, struct cli_command *c) if (p->command && p->callback && cli->privilege >= p->privilege && (p->mode == cli->mode || p->mode == MODE_ANY)) { - cli_error(cli, " %-20s %s", cli_command_name(cli, p), (p->help != NULL ? p->help : "")); + cli_error(cli, " %-35s %s", cli_command_name(cli, p), (p->help != NULL ? p->help : "")); } if (p->children) |