summaryrefslogtreecommitdiff
path: root/trackerlogic.c
diff options
context:
space:
mode:
Diffstat (limited to 'trackerlogic.c')
-rw-r--r--trackerlogic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trackerlogic.c b/trackerlogic.c
index 9165fb7..c69da43 100644
--- a/trackerlogic.c
+++ b/trackerlogic.c
@@ -246,7 +246,7 @@ size_t return_peers_for_torrent( ot_torrent *torrent, unsigned long amount, char
246 } 246 }
247 if( peer_count < amount ) amount = peer_count; 247 if( peer_count < amount ) amount = peer_count;
248 248
249 r += FORMAT_FORMAT_STRING( r, "d8:completei%lie10:incompletei%lie8:intervali60e5:peers%li:", seed_count, peer_count-seed_count, 6*amount ); 249 r += FORMAT_FORMAT_STRING( r, "d8:completei%lie10:incompletei%lie8:intervali600e5:peers%li:", seed_count, peer_count-seed_count, 6*amount );
250 for( index = 0; index < amount; ++index ) { 250 for( index = 0; index < amount; ++index ) {
251 double step = 1.8*((double)( peer_count - wert - 1 ))/((double)( amount - index )); 251 double step = 1.8*((double)( peer_count - wert - 1 ))/((double)( amount - index ));
252 int off = random() % (int)floor( step ); 252 int off = random() % (int)floor( step );