Module: sems Branch: master Commit: 40a276ab2afa9cb7fc5a4d9fa385668bf23c7eba URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=40a276ab2afa9cb7fc5a4d9fa385668bf23c7eba
Author: Raphael Coeffic <[email protected]> Committer: Raphael Coeffic <[email protected]> Date: Fri Feb 18 00:03:45 2011 +0100 b/f: fixes bug introduced with c64ab094. --- core/AmRtpStream.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/core/AmRtpStream.cpp b/core/AmRtpStream.cpp index 08e6be2..155b480 100644 --- a/core/AmRtpStream.cpp +++ b/core/AmRtpStream.cpp @@ -511,7 +511,7 @@ void AmRtpStream::setRAddr(const string& addr, unsigned short port) r_port = port; #ifndef SUPPORT_IPV6 - mute = (sa.sin_addr.s_addr == 0); + mute = (r_saddr.sin_addr.s_addr == 0); #endif } _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
