1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

Xtorrent, not XTorrent

This commit is contained in:
Mitchell Livingston 2006-12-24 01:08:23 +00:00
parent 0aa4d36809
commit 286683b5a5

View file

@ -88,7 +88,7 @@ char * tr_clientForId( uint8_t * id )
} }
else if( !memcmp( &id[1], "XX", 2 ) ) else if( !memcmp( &id[1], "XX", 2 ) )
{ {
asprintf( &ret, "XTorrent (%d)", asprintf( &ret, "Xtorrent (%d)",
charToInt( id[3] ) * 1000 + charToInt( id[4] ) * 100 charToInt( id[3] ) * 1000 + charToInt( id[4] ) * 100
+ charToInt( id[5] ) * 10 + charToInt( id[6] ) ); + charToInt( id[5] ) * 10 + charToInt( id[6] ) );
} }