From c47c620a4765581a7c5eaab94f4aa418fd245a96 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Mon, 21 Jul 2008 18:44:54 +0000 Subject: [PATCH] (daemon) #1100: Ratio is inversed in the remote's torrent transfer details --- daemon/remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/remote.c b/daemon/remote.c index e5cd3bf79..e5ead4054 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -515,7 +515,7 @@ printDetails( tr_benc * top ) printf( " Downloaded: %s\n", buf ); strlsize( buf, j, sizeof( buf ) ); printf( " Uploaded: %s\n", buf ); - strlratio( buf, i, j, sizeof( buf ) ); + strlratio( buf, j, i, sizeof( buf ) ); printf( " Ratio: %s\n", buf ); } if( tr_bencDictFindInt( t, "corruptEver", &i ) ) {