From 914f0cfadf682473a0bb5ec3a959ffba0be740cb Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Thu, 4 Oct 2012 15:53:03 +0000 Subject: [PATCH] IOQ3 commit 2298 --- reaction/code/qcommon/net_ip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reaction/code/qcommon/net_ip.c b/reaction/code/qcommon/net_ip.c index 1c3a2c76..9d2a01f6 100644 --- a/reaction/code/qcommon/net_ip.c +++ b/reaction/code/qcommon/net_ip.c @@ -651,6 +651,7 @@ void Sys_SendPacket( int length, const void *data, netadr_t to ) { } if( (ip_socket == INVALID_SOCKET && to.type == NA_IP) || + (ip_socket == INVALID_SOCKET && to.type == NA_BROADCAST) || (ip6_socket == INVALID_SOCKET && to.type == NA_IP6) || (ip6_socket == INVALID_SOCKET && to.type == NA_MULTICAST6) ) return; @@ -690,7 +691,7 @@ void Sys_SendPacket( int length, const void *data, netadr_t to ) { return; } - Com_Printf( "NET_SendPacket: %s\n", NET_ErrorString() ); + Com_Printf( "Sys_SendPacket: %s\n", NET_ErrorString() ); } }