Skip to content

Commit 183954b

Browse files
config_options.c: Fix truncation of option descriptions.
This increases the format width of option descriptions to avoid needless truncation for longer descriptions. Resolves: #428
1 parent ce1f4b3 commit 183954b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/config_options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ static void cli_show_module_type(struct ast_cli_args *a)
13061306
tmp = item;
13071307
while ((tmp = AST_LIST_NEXT(tmp, next))) {
13081308
if (!strcasecmp(tmp->type, "configOption") && !strcasecmp(tmp->ref, a->argv[4])) {
1309-
ast_cli(a->fd, "%-25s -- %-65.65s\n", tmp->name,
1309+
ast_cli(a->fd, "%-25s -- %-120.120s\n", tmp->name,
13101310
ast_str_buffer(tmp->synopsis));
13111311
}
13121312
}

0 commit comments

Comments
 (0)