From 286683b5a51a608b74e68407062e135e1efe5a2d Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 24 Dec 2006 01:08:23 +0000 Subject: [PATCH] Xtorrent, not XTorrent --- libtransmission/clients.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/clients.c b/libtransmission/clients.c index 920591946..ae4b93550 100644 --- a/libtransmission/clients.c +++ b/libtransmission/clients.c @@ -88,7 +88,7 @@ char * tr_clientForId( uint8_t * id ) } 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[5] ) * 10 + charToInt( id[6] ) ); }