From: Leif Madsen Date: Tue, 19 Apr 2011 14:25:47 +0000 (+0000) Subject: Merged revisions 314203 via svnmerge from X-Git-Tag: 11.0.0-beta1~1707 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=072970e1ab5038ccd83f1fa8a60d876ec1e89254;p=thirdparty%2Fasterisk.git Merged revisions 314203 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ................ r314203 | lmadsen | 2011-04-19 09:24:25 -0500 (Tue, 19 Apr 2011) | 15 lines Merged revisions 314202 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ........ r314202 | lmadsen | 2011-04-19 09:23:39 -0500 (Tue, 19 Apr 2011) | 7 lines 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 ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@314204 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index a8a3ff9632..6a415ff029 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -1948,7 +1948,7 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast 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])) {