Changeset 1610
- Timestamp:
- Mar 31, 2007, 12:14:32 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/clients.c
r1571 r1610 130 130 else if( !memcmp( &id[1], "CD", 2 ) ) 131 131 { 132 asprintf( &ret, "CTorrent %d.%d", 133 charToInt( id[3] ) * 10 + charToInt( id[4] ), 132 asprintf( &ret, "Enhanced CTorrent %d.%d", 133 charToInt( id[3] ) * 10 + charToInt( id[4] ), 134 charToInt( id[5] ) * 10 + charToInt( id[6] ) ); 135 } 136 else if( !memcmp( &id[1], "CT", 2 ) ) 137 { 138 asprintf( &ret, "CTorrent %c.%c.%d", 139 id[3], id[4], 134 140 charToInt( id[5] ) * 10 + charToInt( id[6] ) ); 135 141 }
Note: See TracChangeset
for help on using the changeset viewer.