[Asterisk-cvs] asterisk/channels chan_iax2.c,1.263,1.264

kpfleming at lists.digium.com kpfleming at lists.digium.com
Fri Apr 1 09:59:03 CST 2005


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

Modified Files:
	chan_iax2.c 
Log Message:
Allow chan_iax2 to build on systems that don't define SO_NO_CHECK (bug #3908, round 2)


Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.263
retrieving revision 1.264
diff -u -d -r1.263 -r1.264
--- chan_iax2.c	1 Apr 2005 04:50:21 -0000	1.263
+++ chan_iax2.c	1 Apr 2005 15:52:26 -0000	1.264
@@ -8251,7 +8251,9 @@
 	v = ast_variable_browse(cfg, "general");
 	/* Reset Global Flags */
 	memset(&globalflags, 0, sizeof(globalflags));
+#ifdef SO_NO_CHECK
 	nochecksums = 0;
+#endif
 
 	while(v) {
 		if (!strcasecmp(v->name, "bindport")){ 




More information about the svn-commits mailing list