aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:37:46 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-12-28 17:37:46 +0000
commitfb644319d18cca5bd57ef280393034a0b924a161 (patch)
tree0e7d85ca6b0320a753adfb3b04e095fdc8aea2fc /apps
parentac6c802dd9c4133aebb0989b0d4e9fd672a3894b (diff)
Use recommended option, not deprecated option.
(closes issue #16515) Reported by: ManChicken git-svn-id: http://svn.digium.com/svn/asterisk/trunk@236667 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 a9b3d3d27..c29da2f2c 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -10965,7 +10965,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");