[asterisk-commits] lmadsen: branch 1.8 r314203 - in /branches/1.8: ./ apps/app_dial.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Apr 19 09:24:28 CDT 2011


Author: lmadsen
Date: Tue Apr 19 09:24:25 2011
New Revision: 314203

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=314203
Log:
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
........

Modified:
    branches/1.8/   (props changed)
    branches/1.8/apps/app_dial.c

Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.

Modified: branches/1.8/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_dial.c?view=diff&rev=314203&r1=314202&r2=314203
==============================================================================
--- branches/1.8/apps/app_dial.c (original)
+++ branches/1.8/apps/app_dial.c Tue Apr 19 09:24:25 2011
@@ -1948,7 +1948,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