From 22e61e68ed0e76f7ba4b9b08319ffc29e24d208f Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 16 Dec 2009 01:32:23 +0000 Subject: [PATCH] (trunk libT) fix call to updateDesiredRequestCount() reported by sadface --- libtransmission/peer-msgs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/peer-msgs.c b/libtransmission/peer-msgs.c index ac19dec41..e52b063da 100644 --- a/libtransmission/peer-msgs.c +++ b/libtransmission/peer-msgs.c @@ -1999,7 +1999,7 @@ peerPulse( void * vmsgs ) const time_t now = tr_time( ); if ( tr_isPeerIo( msgs->peer->io ) ) { - updateDesiredRequestCount( msgs, now ); + updateDesiredRequestCount( msgs, tr_date( ) ); updateBlockRequests( msgs ); updateMetadataRequests( msgs, now ); }