From 06dc97772e29e6679dff38052ea94a14411a69fb Mon Sep 17 00:00:00 2001
From: Tilghman Lesher <tilghman@meg.abyt.es>
Date: Mon, 28 Dec 2009 17:37:46 +0000
Subject: [PATCH] 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
---
 apps/app_voicemail.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index a9b3d3d275..c29da2f2c9 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");
-- 
GitLab