From 183954bed3ba9f9897979fd48d8375d7aab85b80 Mon Sep 17 00:00:00 2001 From: Naveen Albert Date: Thu, 9 Nov 2023 10:58:41 -0500 Subject: [PATCH] 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 --- main/config_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/config_options.c b/main/config_options.c index d258f607dc..9769fd3ae1 100644 --- a/main/config_options.c +++ b/main/config_options.c @@ -1306,7 +1306,7 @@ static void cli_show_module_type(struct ast_cli_args *a) tmp = item; while ((tmp = AST_LIST_NEXT(tmp, next))) { if (!strcasecmp(tmp->type, "configOption") && !strcasecmp(tmp->ref, a->argv[4])) { - ast_cli(a->fd, "%-25s -- %-65.65s\n", tmp->name, + ast_cli(a->fd, "%-25s -- %-120.120s\n", tmp->name, ast_str_buffer(tmp->synopsis)); } }