From: Richard Mudgett Date: Tue, 16 Jan 2018 00:03:07 +0000 (-0600) Subject: cel_odbc.c: Fix menuslect module description display. X-Git-Tag: 13.20.0-rc1~80^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0a78bdc3e2f542f1860ce4c44ed10a6af0ffd66;p=thirdparty%2Fasterisk.git 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 --- diff --git a/cel/cel_odbc.c b/cel/cel_odbc.c index ea57b10203..2bc54789ea 100644 --- a/cel/cel_odbc.c +++ b/cel/cel_odbc.c @@ -858,7 +858,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,