summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/app_voicemail.c4
-rwxr-xr-xbuild_tools/prep_moduledeps2
-rw-r--r--channels/chan_zap.c4
3 files changed, 9 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index b29381362..647170fa2 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -8765,6 +8765,10 @@ static void get_mailbox_delimiter(MAILSTREAM *stream) {
}
#endif /* IMAP_STORAGE */
+
+/* This is a workaround so that menuselect displays a proper description
+ * AST_MODULE_INFO(, , "Comedian Mail (Voicemail System)"
+ */
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, tdesc,
.load = load_module,
diff --git a/build_tools/prep_moduledeps b/build_tools/prep_moduledeps
index d6ea8aef6..93dc89675 100755
--- a/build_tools/prep_moduledeps
+++ b/build_tools/prep_moduledeps
@@ -1,7 +1,7 @@
#!/bin/sh
get_description() {
- TDESC=`grep -e AST_MODULE_INFO ${1} | cut -d '"' -f 2`
+ TDESC=`grep -m 1 -e AST_MODULE_INFO ${1} | cut -d '"' -f 2`
}
process_dir() {
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 6d0c9ccd2..13088f86d 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -12694,6 +12694,10 @@ static int reload(void)
return 0;
}
+/* This is a workaround so that menuselect displays a proper description
+ * AST_MODULE_INFO(, , "Zapata Telephony"
+ */
+
#ifdef ZAPATA_PRI
#define tdesc "Zapata Telephony w/PRI"
#else