aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:40:11 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:40:11 +0000
commitbca7e4cb8292048336c4b62a839305eb4c27e6ba (patch)
treedcdd7282673f3f2031a490689efd3a150e149934 /apps
parent3741af94a6e90d695587d1b8f1c7d2312fb883eb (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.1@236669 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 513d73ced..537d47aac 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -10653,7 +10653,7 @@ static int load_config(int reload)
if (sscanf(val, "%30d", &x) == 1) {
vmminsecs = x;
if (maxsilence / 1000 >= vmminsecs) {
- ast_log(AST_LOG_WARNING, "maxsilence should be less than minmessage or you may get empty messages\n");
+ ast_log(AST_LOG_WARNING, "maxsilence should be less than minsecs or you may get empty messages\n");
}
} else {
ast_log(AST_LOG_WARNING, "Invalid min message time length\n");