[asterisk-commits] lmadsen: trunk r302919 - in /trunk: ./ apps/app_dial.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 20 09:46:29 CST 2011


Author: lmadsen
Date: Thu Jan 20 09:46:24 2011
New Revision: 302919

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=302919
Log:
Merged revisions 302918 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.8

................
  r302918 | lmadsen | 2011-01-20 09:45:39 -0600 (Thu, 20 Jan 2011) | 16 lines
  
  Merged revisions 302917 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ........
    r302917 | lmadsen | 2011-01-20 09:42:05 -0600 (Thu, 20 Jan 2011) | 8 lines
    
    Option L() is milliseconds, not seconds.
    > Change the verbose output of option L() to say milliseconds and not seconds
    > as the value is in milliseconds.
    > 
    > (closes issue #18264)
    > Reported by: jacco
    > Patches: 
    >       app_dial_patch.txt uploaded by lmadsen (license 10)
  ........
................

Modified:
    trunk/   (props changed)
    trunk/apps/app_dial.c

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

Modified: trunk/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_dial.c?view=diff&rev=302919&r1=302918&r2=302919
==============================================================================
--- trunk/apps/app_dial.c (original)
+++ trunk/apps/app_dial.c Thu Jan 20 09:46:24 2011
@@ -1879,7 +1879,7 @@
 			pbx_builtin_setvar_helper(chan, "DIALSTATUS", pa.status);
 			goto done;
 		}
-		ast_verb(3, "Setting call duration limit to %.3lf seconds.\n", calldurationlimit.tv_sec + calldurationlimit.tv_usec / 1000000.0);
+		ast_verb(3, "Setting call duration limit to %.3lf milliseconds.\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