[asterisk-commits] russell: branch 1.6.0 r115848 - in /branches/1.6.0: ./ res/res_smdi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue May 13 12:14:50 CDT 2008


Author: russell
Date: Tue May 13 12:14:50 2008
New Revision: 115848

URL: http://svn.digium.com/view/asterisk?view=rev&rev=115848
Log:
Merged revisions 115847 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r115847 | russell | 2008-05-13 12:14:22 -0500 (Tue, 13 May 2008) | 2 lines

Initialize the start time in smdi_msg_wait.  Somehow this code got lost in trunk.

........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/res/res_smdi.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/res/res_smdi.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/res/res_smdi.c?view=diff&rev=115848&r1=115847&r2=115848
==============================================================================
--- branches/1.6.0/res/res_smdi.c (original)
+++ branches/1.6.0/res/res_smdi.c Tue May 13 12:14:50 2008
@@ -389,6 +389,8 @@
 	struct timeval start;
 	long diff = 0;
 	void *msg;
+
+	start = ast_tvnow();
 
 	while (diff < timeout) {
 		struct timespec ts = { 0, };




More information about the asterisk-commits mailing list