From c7f082760f432b227277b4e1e39fc88c814d2dde Mon Sep 17 00:00:00 2001 From: tjw Date: Fri, 20 Jul 2007 14:34:44 +0000 Subject: * (bug 3268) Replace Mac OS X Carbon API calls with native ones (thanks to i3enedek). * remove some spammy Mac OS X printf's regarding local network detection * replaced a #warning for non-OS X PPC systems with a call to msync(..., MS_INVALIDATE). This needs testing. git-svn-id: svn://svn.icculus.org/quake3/trunk@1118 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/unix/unix_net.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'code/unix/unix_net.c') diff --git a/code/unix/unix_net.c b/code/unix/unix_net.c index 13dc3fb..5fd1b0c 100644 --- a/code/unix/unix_net.c +++ b/code/unix/unix_net.c @@ -382,8 +382,6 @@ void NET_GetLocalAddress( void ) { int interfaceSocket; int family; - Com_Printf("NET_GetLocalAddress: Querying for network interfaces\n"); - // Set this early so we can just return if there is an error numIP = 0; @@ -405,7 +403,6 @@ void NET_GetLocalAddress( void ) { return; } - linkInterface = (struct ifreq *) ifc.ifc_buf; while ((char *) linkInterface < &ifc.ifc_buf[ifc.ifc_len]) { unsigned int nameLength; @@ -469,7 +466,6 @@ void NET_GetLocalAddress( void ) { } linkInterface = IFR_NEXT(linkInterface); } - Com_Printf("NET_GetLocalAddress: DONE querying for network interfaces\n"); close(interfaceSocket); } -- cgit v1.2.3