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: 15.3.0-rc1~86^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14b681ac665ae5c14533bf553cc7d17056027fa3;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 a289b877ca..05c1095cbc 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,