summaryrefslogtreecommitdiff
path: root/cel
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2018-01-15 18:03:07 -0600
committerRichard Mudgett <rmudgett@digium.com>2018-01-15 18:15:57 -0600
commit6fbe315f77d12d5b612e9c57ed2084495b4b57a9 (patch)
treebf341a0557ccc63da46fa45409ff846b1c09eade /cel
parent6f1f16d88720db2f0c29f323dce2ba065cb0c9ce (diff)
cel_odbc.c: Fix menuslect module description display.
Asterisk's makefile for menuselect has a very simple source file parsing script that looks for AST_MODULE_INFO lines to extract the quoted string as a module description. If it does not find a quoted string it uses the whole line as the description. Change-Id: I80f13a63818e4e28d683639a94a4dfaea405c1d5
Diffstat (limited to 'cel')
-rw-r--r--cel/cel_odbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cel/cel_odbc.c b/cel/cel_odbc.c
index a289b877c..05c1095cb 100644
--- a/cel/cel_odbc.c
+++ b/cel/cel_odbc.c
@@ -849,7 +849,7 @@ static int reload(void)
return AST_MODULE_LOAD_SUCCESS;
}
-AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, ODBC_BACKEND_NAME,
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "ODBC CEL backend",
.support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,