aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:40:21 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:40:21 +0000
commitf6ef85ceaf0835f7e6520319a8323de67bd63ff1 (patch)
tree9d44bc464075b69e06975b51869582ae79c5ee71 /apps
parent11059ae484c8dc3b9d5a9134a85b55056d8b354f (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.2@236670 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 70c03ce5d..ce24f7baf 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -10781,7 +10781,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");