]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 314203 via svnmerge from
authorLeif Madsen <leif@leifmadsen.com>
Tue, 19 Apr 2011 14:25:47 +0000 (14:25 +0000)
committerLeif Madsen <leif@leifmadsen.com>
Tue, 19 Apr 2011 14:25:47 +0000 (14:25 +0000)
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

apps/app_dial.c

index a8a3ff9632ad399f3ebbbc558baff57562b5b407..6a415ff029555901157f47cdaab2345999971581 100644 (file)
@@ -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])) {