[asterisk-commits] lmadsen: branch 1.6.2 r314202 - /branches/1.6.2/apps/app_dial.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 19 09:23:43 CDT 2011
Author: lmadsen
Date: Tue Apr 19 09:23:39 2011
New Revision: 314202
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=314202
Log:
Update seconds to milliseconds in ast_verb output.
(closes issue #19084)
Reported by: smurfix
Patches:
app_dial.patch uploaded by smurfix (license 547)
Tested by: lmadsen, smurfix
Modified:
branches/1.6.2/apps/app_dial.c
Modified: branches/1.6.2/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_dial.c?view=diff&rev=314202&r1=314201&r2=314202
==============================================================================
--- branches/1.6.2/apps/app_dial.c (original)
+++ branches/1.6.2/apps/app_dial.c Tue Apr 19 09:23:39 2011
@@ -1635,7 +1635,7 @@
pbx_builtin_setvar_helper(chan, "DIALSTATUS", pa.status);
goto done;
}
- ast_verb(3, "Setting call duration limit to %.3lf milliseconds.\n", calldurationlimit.tv_sec + calldurationlimit.tv_usec / 1000000.0);
+ ast_verb(3, "Setting call duration limit to %.3lf seconds.\n", calldurationlimit.tv_sec + calldurationlimit.tv_usec / 1000000.0);
}
if (ast_test_flag64(&opts, OPT_SENDDTMF) && !ast_strlen_zero(opt_args[OPT_ARG_SENDDTMF])) {
More information about the asterisk-commits
mailing list