Changeset 14234
- Timestamp:
- Jan 19, 2014, 5:03:27 AM (7 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent-magnet.c
r14225 r14234 300 300 incompleteMetadataFree (tor->incompleteMetadata); 301 301 tor->incompleteMetadata = NULL; 302 tor->isStopping = true; 303 tor->magnetVerify = true; 304 tor->startAfterVerify = true; 302 305 } 303 306 else /* drat. */ -
trunk/libtransmission/torrent.c
r14225 r14234 1874 1874 1875 1875 tr_torrentUnlock (tor); 1876 1877 if (tor->magnetVerify) 1878 { 1879 tor->magnetVerify = false; 1880 tr_logAddTorInfo (tor, "%s", "Magnet Verify"); 1881 refreshCurrentDir (tor); 1882 tr_torrentVerify (tor, NULL, NULL); 1883 } 1876 1884 } 1877 1885 … … 1908 1916 tr_logAddTorInfo (tor, "%s", _("Removing torrent")); 1909 1917 1918 tor->magnetVerify = false; 1910 1919 stopTorrent (tor); 1911 1920 -
trunk/libtransmission/torrent.h
r14225 r14234 247 247 bool isDirty; 248 248 bool isQueued; 249 250 bool magnetVerify; 249 251 250 252 bool infoDictOffsetIsCached;
Note: See TracChangeset
for help on using the changeset viewer.