From 4c603771685e2c9378c25843ce6f301014ec10b5 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 11 Jun 2009 22:46:33 +0000 Subject: [PATCH] (trunk) fix oops --- libtransmission/torrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 4cc95e20d..9ed437bf8 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -1275,7 +1275,7 @@ torrentStart( tr_torrent * tor, int reloadProgress ) if( !isVerifying ) tr_verifyAdd( tor, checkAndStartCB ); - tor->dhtAnnounceAt = time( NULL ) tr_cryptoWeakRandInt( 20 ); + tor->dhtAnnounceAt = time( NULL ) + tr_cryptoWeakRandInt( 20 ); } tr_globalUnlock( tor->session );