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: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@236670 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Tilghman Lesher 16 years ago
parent d05977c54f
commit ac40f10d2f

@ -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");

Loading…
Cancel
Save