Changeset 8910 for trunk/libtransmission/torrent.c
- Timestamp:
- Aug 13, 2009, 2:47:56 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent.c
r8898 r8910 1355 1355 } 1356 1356 1357 void 1358 tr_torrentSave( tr_torrent * tor ) 1359 { 1360 assert( tr_isTorrent( tor ) ); 1361 1362 if( tor->isDirty ) { 1363 tor->isDirty = FALSE; 1364 tr_torrentSaveResume( tor ); 1365 } 1366 } 1367 1357 1368 static void 1358 1369 stopTorrent( void * vtor ) … … 1368 1379 tr_fdTorrentClose( tor->uniqueId ); 1369 1380 1370 if( tor->isDirty ) { 1371 tor->isDirty = 0; 1372 if( !tor->isDeleting ) 1373 tr_torrentSaveResume( tor ); 1374 } 1381 if( !tor->isDeleting ) 1382 tr_torrentSave( tor ); 1375 1383 } 1376 1384
Note: See TracChangeset
for help on using the changeset viewer.