summaryrefslogtreecommitdiff
path: root/trackerlogic.c
diff options
context:
space:
mode:
authordenis <>2007-05-20 14:35:22 +0000
committerdenis <>2007-05-20 14:35:22 +0000
commitf3d83559e61f6aa413cf52b5c39ede837513f83d (patch)
tree283c555fe1cc4d976f93305bd5f3c58720498a17 /trackerlogic.c
parent8f0aaed6b2b3a91817a8e1ab34e3b1feee8a1519 (diff)
need more space for data because we reach this limit easily now
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 bc5c9ef..ebfb1f8 100644
--- a/trackerlogic.c
+++ b/trackerlogic.c
@@ -340,7 +340,7 @@ size_t return_memstat_for_tracker( char **reply ) {
340 ot_hash *hash =&( ((ot_torrent*)(torrents_list->data))[j] ).hash; 340 ot_hash *hash =&( ((ot_torrent*)(torrents_list->data))[j] ).hash;
341 r += sprintf( r, "\n%s:\n", to_hex( (ot_byte*)hash ) ); 341 r += sprintf( r, "\n%s:\n", to_hex( (ot_byte*)hash ) );
342 for( k=0; k<OT_POOLS_COUNT; ++k ) 342 for( k=0; k<OT_POOLS_COUNT; ++k )
343 r += sprintf( r, "\t%04X %04X\n", ((unsigned int)peer_list->peers[k].size), (unsigned int)peer_list->peers[k].space ); 343 r += sprintf( r, "\t%05X %05X\n", ((unsigned int)peer_list->peers[k].size), (unsigned int)peer_list->peers[k].space );
344 } 344 }
345 } 345 }
346 346