1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 08:43:27 +00:00

add Shad0w's client

This commit is contained in:
Mitchell Livingston 2007-02-14 16:30:11 +00:00
parent 62bbab9ab5
commit f983fe04a6

View file

@ -172,6 +172,11 @@ char * tr_clientForId( uint8_t * id )
{
asprintf( &ret, "Tribler %c.%c", id[1], id[2] );
}
else if( id[0] == 'S' )
{
asprintf( &ret, "Shad0w's Client %d.%d.%d", charToInt( id[1] ),
charToInt( id[2] ), charToInt( id[3] ) );
}
if( ret )
{