mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 05:29:51 +01:00
engine: network: fix missing newline in IP port allocation error message
This commit is contained in:
parent
558ded6d6a
commit
2e7306e96a
@ -1980,11 +1980,11 @@ void NET_Config( qboolean multiplayer, qboolean changeport )
|
|||||||
nov6 = net.allow_ip6 && NET_IsSocketError( net.ip6_sockets[NS_SERVER] );
|
nov6 = net.allow_ip6 && NET_IsSocketError( net.ip6_sockets[NS_SERVER] );
|
||||||
|
|
||||||
if( nov4 && nov6 )
|
if( nov4 && nov6 )
|
||||||
Host_Error( "Couldn't allocate IPv4 and IPv6 server ports." );
|
Host_Error( "Couldn't allocate IPv4 and IPv6 server ports.\n" );
|
||||||
else if( nov4 && !nov6 )
|
else if( nov4 && !nov6 )
|
||||||
Con_Printf( S_ERROR "Couldn't allocate IPv4 server port" );
|
Con_Printf( S_ERROR "Couldn't allocate IPv4 server port\n" );
|
||||||
else if( !nov4 && nov6 )
|
else if( !nov4 && nov6 )
|
||||||
Con_Printf( S_ERROR "Couldn't allocate IPv6 server_port" );
|
Con_Printf( S_ERROR "Couldn't allocate IPv6 server_port\n" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// get our local address, if possible
|
// get our local address, if possible
|
||||||
|
Loading…
Reference in New Issue
Block a user