summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-12-28 17:37:46 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-12-28 17:37:46 +0000
commit06dc97772e29e6679dff38052ea94a14411a69fb (patch)
tree0e7d85ca6b0320a753adfb3b04e095fdc8aea2fc /apps
parent2706de850a943d82664f35bad8cc64ca64ee9afe (diff)
Use recommended option, not deprecated option.
(closes issue #16515) Reported by: ManChicken git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@236667 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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");