[Freeswitch-svn] [commit] r10603 - freeswitch/trunk/src
FreeSWITCH SVN
mcollins at freeswitch.org
Thu Dec 4 16:05:22 PST 2008
Author: mcollins
Date: Thu Dec 4 19:05:22 2008
New Revision: 10603
Log:
Fix progressmsec issue
Modified:
freeswitch/trunk/src/switch_channel.c
Modified: freeswitch/trunk/src/switch_channel.c
==============================================================================
--- freeswitch/trunk/src/switch_channel.c (original)
+++ freeswitch/trunk/src/switch_channel.c Thu Dec 4 19:05:22 2008
@@ -2307,7 +2307,7 @@
switch_snprintf(tmp, sizeof(tmp), "%d", progressmsec);
switch_channel_set_variable(channel, "progressmsec", tmp);
- switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progressusec);
+ switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progressmsec);
switch_channel_set_variable(channel, "progress_mediamsec", tmp);
switch_snprintf(tmp, sizeof(tmp), "%d", legbillmsec);
More information about the Freeswitch-svn
mailing list