Changeset 13658
- Timestamp:
- Dec 13, 2012, 5:22:30 AM (10 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/torrent.c
r13653 r13658 489 489 if (tr_torrentIsSeedRatioDone (tor)) 490 490 { 491 tr_torinf (tor, " Seed ratio reached; pausing torrent");491 tr_torinf (tor, "%s", "Seed ratio reached; pausing torrent"); 492 492 493 493 tor->isStopping = true; … … 500 500 else if (tr_torrentIsSeedIdleLimitDone (tor)) 501 501 { 502 tr_torinf (tor, " Seeding idle limit reached; pausing torrent");502 tr_torinf (tor, "%s", "Seeding idle limit reached; pausing torrent"); 503 503 504 504 tor->isStopping = true; … … 1709 1709 /* allow finished torrents to be resumed */ 1710 1710 if (tr_torrentIsSeedRatioDone (tor)) { 1711 tr_torinf (tor, _("Restarted manually -- disabling its seed ratio"));1711 tr_torinf (tor, "%s", _("Restarted manually -- disabling its seed ratio")); 1712 1712 tr_torrentSetRatioMode (tor, TR_RATIOLIMIT_UNLIMITED); 1713 1713 } … … 1811 1811 { 1812 1812 tr_torrent * tor = vtor; 1813 tr_torinf (tor, " Pausing");1813 tr_torinf (tor, "%s", "Pausing"); 1814 1814 1815 1815 if (tr_torrentLock (tor)) -
trunk/libtransmission/tr-dht.c
r13625 r13658 541 541 if (tor) { 542 542 if (event == DHT_EVENT_SEARCH_DONE) { 543 tr_torinf (tor, " IPv4 DHT announce done");543 tr_torinf (tor, "%s", "IPv4 DHT announce done"); 544 544 tor->dhtAnnounceInProgress = 0; 545 545 } else { 546 tr_torinf (tor, " IPv6 DHT announce done");546 tr_torinf (tor, "%s", "IPv6 DHT announce done"); 547 547 tor->dhtAnnounce6InProgress = 0; 548 548 }
Note: See TracChangeset
for help on using the changeset viewer.