mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-08 05:11:51 +08:00
engine: server: fix incorrect ID string generation, hashedcdkey is already an MD5 string
This commit is contained in:
@@ -751,7 +751,7 @@ const char *SV_GetClientIDString( sv_client_t *cl )
|
||||
if( sv_lan.value )
|
||||
return "ID_LAN";
|
||||
|
||||
Q_snprintf( result, sizeof( result ), "ID_%s", MD5_Print( (byte *)cl->hashedcdkey ));
|
||||
Q_snprintf( result, sizeof( result ), "ID_%s", cl->hashedcdkey );
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user