[svn-commits] elguero: branch 11 r372266 - /branches/11/res/res_rtp_asterisk.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Sep 5 07:17:53 CDT 2012


Author: elguero
Date: Wed Sep  5 07:17:48 2012
New Revision: 372266

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=372266
Log:
Fix breakage caused by last merge.  Missing a variable for 11 and trunk.

Modified:
    branches/11/res/res_rtp_asterisk.c

Modified: branches/11/res/res_rtp_asterisk.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/res_rtp_asterisk.c?view=diff&rev=372266&r1=372265&r2=372266
==============================================================================
--- branches/11/res/res_rtp_asterisk.c (original)
+++ branches/11/res/res_rtp_asterisk.c Wed Sep  5 07:17:48 2012
@@ -1466,7 +1466,7 @@
 
 		rtpheader[0] = htonl((2 << 30) | (rtp->send_payload << 16) | (rtp->seqno));
 
-		res = rtp_sendto(instance, (void *) rtpheader, hdrlen + 4, 0, &remote_address);
+		res = rtp_sendto(instance, (void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
 
 		if (res < 0) {
 			ast_log(LOG_ERROR, "RTP Transmission error to %s: %s\n",




More information about the svn-commits mailing list