aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfig.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/config.c b/config.c
index 1c7c6cb95..afe7211f7 100755
--- a/config.c
+++ b/config.c
@@ -1036,8 +1036,12 @@ static int config_command(int fd, int argc, char **argv)
return 0;
}
+static char show_config_help[] =
+ "Usage: show config mappings\n"
+ " Shows the filenames to config engines.\n";
+
static struct ast_cli_entry config_command_struct = {
- { "show", "config", "mappings" }, config_command, "Show Config mappings (file names to config engines)"
+ { "show", "config", "mappings", NULL }, config_command, "Show Config mappings (file names to config engines)", show_config_help, NULL
};
int register_config_cli()