1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-15 16:29:34 +00:00

Use the proper name of uTorrent through the magic of UTF-8.

This commit is contained in:
Josh Elsasser 2006-08-13 21:42:19 +00:00
parent 3b56abf6fa
commit 1c7d77b501

View file

@ -59,7 +59,7 @@ char * tr_clientForId( uint8_t * id )
}
else if( !memcmp( &id[1], "UT", 2 ) )
{
asprintf( &ret, "uTorrent %c.%d", id[3],
asprintf( &ret, "\xc2\xb5Torrent %c.%d", id[3],
( id[4] - '0' ) * 10 + ( id[5] - '0' ) );
}
}