[Asterisk-cvs] asterisk/channels chan_h323.c,1.80,1.81

jeremy at lists.digium.com jeremy at lists.digium.com
Thu Oct 14 01:29:31 CDT 2004


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv9912

Modified Files:
	chan_h323.c 
Log Message:
use the right variable to ensure it copied correctly

Index: chan_h323.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_h323.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- chan_h323.c	14 Oct 2004 05:21:12 -0000	1.80
+++ chan_h323.c	14 Oct 2004 05:29:55 -0000	1.81
@@ -1074,7 +1074,7 @@
 	/* evil hack, until I (someone?) figures out a better way */
 	info->addr = ast_inet_ntoa(iabuf, sizeof(iabuf), bindaddr.sin_addr);
 	info->port = ntohs(us.sin_port);
-	ast_log(LOG_DEBUG, "Sending RTP 'US' %s:%d\n", iabuf, info->port);
+	ast_log(LOG_DEBUG, "Sending RTP 'US' %s:%d\n", info->addr, info->port);
 	return info;
 }
 




More information about the svn-commits mailing list