1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-06 03:28:33 +00:00

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

View file

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