in the clients list show dev builds as Transmission as "+" builds

This commit is contained in:
Mitchell Livingston 2007-08-01 02:38:31 +00:00
parent f7385382a9
commit 043d517730
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ char * tr_clientForId( uint8_t * id )
{ {
asprintf( &ret, "Transmission %d.%c%c%s", asprintf( &ret, "Transmission %d.%c%c%s",
charToInt( id[3] ), id[4], id[5], charToInt( id[3] ), id[4], id[5],
id[6] == 'Z' ? " (dev)" : "" ); id[6] == 'Z' ? "+" : "" );
} }
} }
else if( !memcmp( &id[1], "AZ", 2 ) ) else if( !memcmp( &id[1], "AZ", 2 ) )