diff options
Diffstat (limited to 'src/unix/unix_net.c')
-rw-r--r-- | src/unix/unix_net.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/unix/unix_net.c b/src/unix/unix_net.c index 31d27c8d..86706673 100644 --- a/src/unix/unix_net.c +++ b/src/unix/unix_net.c @@ -383,8 +383,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; @@ -406,7 +404,6 @@ void NET_GetLocalAddress( void ) { return; } - linkInterface = (struct ifreq *) ifc.ifc_buf; while ((char *) linkInterface < &ifc.ifc_buf[ifc.ifc_len]) { unsigned int nameLength; @@ -470,7 +467,6 @@ void NET_GetLocalAddress( void ) { } linkInterface = IFR_NEXT(linkInterface); } - Com_Printf("NET_GetLocalAddress: DONE querying for network interfaces\n"); close(interfaceSocket); } |