Changeset 3905
- Timestamp:
- Nov 20, 2007, 4:51:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9x/libtransmission/torrent.c
r3897 r3905 660 660 } 661 661 662 void 663 tr_manualUpdate( tr_torrent * tor ) 664 { 662 static void 663 tr_manualUpdateImpl( void * vtor ) 664 { 665 tr_torrent * tor = vtor; 665 666 if( tor->isRunning ) 666 667 tr_trackerReannounce( tor->tracker ); 668 } 669 void 670 tr_manualUpdate( tr_torrent * tor ) 671 { 672 tr_runInEventThread( tor->handle, tr_manualUpdateImpl, tor ); 667 673 } 668 674 int
Note: See TracChangeset
for help on using the changeset viewer.