mirror of
https://github.com/transmission/transmission
synced 2025-02-08 15:34:44 +00:00
tiennou's fix for #463
This commit is contained in:
parent
4218de225f
commit
dfba59b97a
2 changed files with 3 additions and 2 deletions
1
NEWS
1
NEWS
|
@ -15,6 +15,7 @@ NEWS file for Transmission <http://transmission.m0k.org/>
|
||||||
+ Fix bug that could cause good peer connections to be lost
|
+ Fix bug that could cause good peer connections to be lost
|
||||||
+ Tweak request queue code to improve download speeds
|
+ Tweak request queue code to improve download speeds
|
||||||
+ Consume less battery power on laptops
|
+ Consume less battery power on laptops
|
||||||
|
+ Fix minor IPC parsing error
|
||||||
|
|
||||||
0.92 (2007/11/05)
|
0.92 (2007/11/05)
|
||||||
- All Platforms:
|
- All Platforms:
|
||||||
|
|
|
@ -761,7 +761,7 @@ ipc_addstat( benc_val_t * list, int tor,
|
||||||
error = st->error;
|
error = st->error;
|
||||||
if( TR_OK == error )
|
if( TR_OK == error )
|
||||||
{
|
{
|
||||||
tr_bencInitStr( item, NULL, 0, 1 );
|
tr_bencInitStr( item, "other", -1, 1 );
|
||||||
}
|
}
|
||||||
else if( TR_ERROR_ISSET( TR_ERROR_ASSERT, error ) )
|
else if( TR_ERROR_ISSET( TR_ERROR_ASSERT, error ) )
|
||||||
{
|
{
|
||||||
|
@ -803,7 +803,7 @@ ipc_addstat( benc_val_t * list, int tor,
|
||||||
case IPC_ST_ERRMSG:
|
case IPC_ST_ERRMSG:
|
||||||
if( '\0' == st->errorString[0] )
|
if( '\0' == st->errorString[0] )
|
||||||
{
|
{
|
||||||
tr_bencInitStr( item, NULL, 0, 1 );
|
tr_bencInitStr( item, "other", -1, 1 );
|
||||||
}
|
}
|
||||||
else if( tr_bencInitStrDup( item, st->errorString ) )
|
else if( tr_bencInitStrDup( item, st->errorString ) )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue