engine: server: fix incorrect ID string generation, hashedcdkey is already an MD5 string
This commit is contained in:
parent
674b4c1506
commit
fc2888e107
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue