(libT) #1537: uTorrent Mac Beta Peer ID

This commit is contained in:
Charles Kerr 2008-11-30 17:10:43 +00:00
parent d440523475
commit f0571fe25d
1 changed files with 5 additions and 0 deletions

View File

@ -176,6 +176,11 @@ tr_clientForId( char * buf, size_t buflen, const void * id_in )
tr_snprintf( buf, buflen, "\xc2\xb5Torrent %d.%d.%d%s",
strint(id+3,1), strint(id+4,1), strint(id+5,1), getMnemonicEnd(id[6]) );
}
if( !memcmp( id+1, "UM", 2 ) )
{
tr_snprintf( buf, buflen, "\xc2\xb5Torrent Mac %d.%d.%d%s",
strint(id+3,1), strint(id+4,1), strint(id+5,1), getMnemonicEnd(id[6]) );
}
else if( !memcmp( id+1, "TR", 2 ) )
{