Changeset 2315
- Timestamp:
- Jul 10, 2007, 12:33:48 AM (16 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/fastresume.c
r2202 r2315 405 405 return ret; 406 406 } 407 408 void409 fastResumeRemove( tr_torrent_t * tor )410 {411 char file[MAX_PATH_LENGTH];412 fastResumeFileName( file, sizeof file, tor, NULL != tor->handle->tag );413 414 if ( unlink( file ) )415 {416 tr_inf( "Removing fast resume file failed" );417 }418 } -
trunk/libtransmission/fastresume.h
r2149 r2315 31 31 tr_bitfield_t * uncheckedPieces ); 32 32 33 void fastResumeRemove( tr_torrent_t * tor );34 35 33 #endif -
trunk/libtransmission/inout.c
r2311 r2315 304 304 } 305 305 306 void tr_ioRemoveResume( tr_torrent_t * tor )307 {308 if( !tor->io )309 fastResumeRemove( tor );310 }311 312 306 int 313 307 tr_ioHash( tr_io_t * io, int pieceIndex ) -
trunk/libtransmission/inout.h
r2202 r2315 29 29 30 30 int tr_ioLoadResume ( tr_torrent_t * ); 31 void tr_ioRemoveResume( tr_torrent_t * );32 31 33 32
Note: See TracChangeset
for help on using the changeset viewer.