1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-09 07:54:48 +00:00

(daemon) #1100: Ratio is inversed in the remote's torrent transfer details

This commit is contained in:
Charles Kerr 2008-07-21 18:44:54 +00:00
parent c06be77724
commit c47c620a47

View file

@ -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 ) ) {