Changeset 8896 for trunk/libtransmission/torrent.c
- Timestamp:
- Aug 12, 2009, 3:56:53 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent.c
r8889 r8896 510 510 } 511 511 512 static void torrentStart( tr_torrent * tor, 513 int reloadProgress ); 512 static void torrentStart( tr_torrent * tor ); 514 513 515 514 /** … … 678 677 679 678 if( doStart ) 680 torrentStart( tor , FALSE);679 torrentStart( tor ); 681 680 } 682 681 … … 1279 1278 1280 1279 static void 1281 torrentStart( tr_torrent * tor , int reloadProgress)1280 torrentStart( tr_torrent * tor ) 1282 1281 { 1283 1282 assert( tr_isTorrent( tor ) ); … … 1288 1287 { 1289 1288 tr_verifyRemove( tor ); 1290 1291 if( reloadProgress )1292 tr_torrentLoadResume( tor, TR_FR_PROGRESS, NULL );1293 1294 1289 tor->isRunning = 1; 1295 1290 tr_verifyAdd( tor, checkAndStartCB ); … … 1303 1298 { 1304 1299 if( tr_isTorrent( tor ) ) 1305 torrentStart( tor , TRUE);1300 torrentStart( tor ); 1306 1301 } 1307 1302
Note: See TracChangeset
for help on using the changeset viewer.