From 40a276ab2afa9cb7fc5a4d9fa385668bf23c7eba Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Fri, 18 Feb 2011 00:03:45 +0100 Subject: [PATCH] b/f: fixes bug introduced with c64ab094. --- core/AmRtpStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AmRtpStream.cpp b/core/AmRtpStream.cpp index 08e6be29..155b4800 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 }