aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:39:57 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:39:57 +0000
commit3f1aa1f7873b5e961e988535f4c5bc091b8a95d2 (patch)
tree68eb6f8c1e5e2400fcd82c90082f8d77f65e44ee
parent20240dd72663bc8cdbf47c8b39d27e1191812530 (diff)
Merged revisions 236667 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r236667 | tilghman | 2009-12-28 11:37:46 -0600 (Mon, 28 Dec 2009) | 4 lines Use recommended option, not deprecated option. (closes issue #16515) Reported by: ManChicken ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@236668 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index bd20183ee..ec359ed8e 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -9592,7 +9592,7 @@ static int load_config(int reload)
if (sscanf(val, "%30d", &x) == 1) {
vmminsecs = x;
if (maxsilence / 1000 >= vmminsecs) {
- ast_log(LOG_WARNING, "maxsilence should be less than minmessage or you may get empty messages\n");
+ ast_log(LOG_WARNING, "maxsilence should be less than minsecs or you may get empty messages\n");
}
} else {
ast_log(LOG_WARNING, "Invalid min message time length\n");