mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
set properties for new files
This commit is contained in:
parent
a635077abd
commit
8f7f65388e
1 changed files with 2 additions and 2 deletions
|
@ -390,9 +390,9 @@ char * tr_clientForId( const uint8_t * id )
|
||||||
{
|
{
|
||||||
asprintf( &ret, "eXeem" );
|
asprintf( &ret, "eXeem" );
|
||||||
}
|
}
|
||||||
else if( '\0' == id[0] && 'B' == id[2] && 'S' == id[3] )
|
else if( '\0' == id[0] && !memcmp( &id[1], "BS", 2 ) )
|
||||||
{
|
{
|
||||||
asprintf( &ret, "BitSpirit v%u", ( 0 == id[1] ? 1 : id[1] ) );
|
asprintf( &ret, "BitSpirit %u", ( id[1] == 0 ? 1 : id[1] ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* No match */
|
/* No match */
|
||||||
|
|
Loading…
Reference in a new issue