Changeset 13475
- Timestamp:
- Sep 7, 2012, 4:25:04 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/remote.c
r13444 r13475 862 862 if( tr_bencDictFindStr( t, "hashString", &str ) ) 863 863 printf( " Hash: %s\n", str ); 864 if( tr_bencDictFindStr( t, "magnetLink", &str ) ) 865 printf( " Magnet: %s\n", str ); 864 if( tr_bencDictFindStr( t, "magnetLink", &str ) ) 865 printf( " Magnet: %s\n", str ); 866 866 printf( "\n" ); 867 867 -
trunk/gtk/open-dialog.c
r13388 r13475 476 476 handled = TRUE; 477 477 } 478 479 478 480 479 if( handled ) -
trunk/libtransmission/peer-msgs.c
r13361 r13475 1690 1690 1691 1691 /* honor the session limits, if enabled */ 1692 if( tr_torrentUsesSessionLimits( torrent ) 1693 &&tr_sessionGetActiveSpeedLimit_Bps( torrent->session, TR_PEER_TO_CLIENT, &irate_Bps ) )1692 if( tr_torrentUsesSessionLimits( torrent ) && 1693 tr_sessionGetActiveSpeedLimit_Bps( torrent->session, TR_PEER_TO_CLIENT, &irate_Bps ) ) 1694 1694 rate_Bps = MIN( rate_Bps, irate_Bps ); 1695 1695 -
trunk/utils/show.c
r13397 r13475 343 343 if( scrapeFlag ) 344 344 doScrape( &inf ); 345 else 345 else 346 346 showInfo( &inf ); 347 347 }
Note: See TracChangeset
for help on using the changeset viewer.