From 76079f50e33392f8591bad5090ff3983d0380380 Mon Sep 17 00:00:00 2001 From: Eric Petit Date: Mon, 30 Jan 2006 06:07:06 +0000 Subject: [PATCH] Fixed the build --- libtransmission/transmission.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libtransmission/transmission.c b/libtransmission/transmission.c index 461668a65..7452413cf 100644 --- a/libtransmission/transmission.c +++ b/libtransmission/transmission.c @@ -580,7 +580,7 @@ static void acceptLoop( void * _h ) uint64_t date1, date2, lastchoke = 0; int ii, jj; uint8_t * hash; - tr_choking_t * choking = tr_chokingInit( h ); + //tr_choking_t * choking = tr_chokingInit( h ); tr_dbg( "Accept thread started" ); @@ -649,7 +649,7 @@ static void acceptLoop( void * _h ) if( date1 > lastchoke + 2000 ) { - tr_chokingPulse( choking ); + //tr_chokingPulse( choking ); lastchoke = date1; } @@ -664,7 +664,7 @@ static void acceptLoop( void * _h ) } tr_lockUnlock( &h->acceptLock ); - tr_chokingClose( choking ); + //tr_chokingClose( choking ); tr_dbg( "Accept thread exited" ); }