From ebe125e896b782dbf9c30edf004bd850f4360c3a Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 2 Mar 2009 23:52:25 +0000 Subject: [PATCH] (trunk libT) add another seed-ratio check when starting a torrent, as per Mitchell's suggestion --- libtransmission/torrent.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index bd7bf4933..ca554a283 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -1178,6 +1178,7 @@ checkAndStartImpl( void * vtor ) tor->startDate = time( NULL ); tr_trackerStart( tor->tracker ); tr_peerMgrStartTorrent( tor ); + tr_torrentCheckSeedRatio( tor ); tr_globalUnlock( tor->session ); }