1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-27 07:06:45 +00:00

Fix endianess issue in /24 stats code

This commit is contained in:
erdgeist 2007-07-22 16:33:16 +00:00
parent afe966b644
commit d49c1d5960

View File

@ -656,8 +656,8 @@ size_t return_stats_for_slash24s( char *reply, size_t amount, ot_dword thresh )
ot_peer *peers = peer_list->peers[k].data;
size_t numpeers = peer_list->peers[k].size;
for( l=0; l<numpeers; ++l )
if( ++count[ (*(ot_dword*)(peers+l))>>8 ] == 65335 )
count[ (*(ot_dword*)(peers+l))>>8 ] = 65334;
if( ++count[ ntohl(*(ot_dword*)(peers+l))>>8 ] == 65335 )
count[ ntohl(*(ot_dword*)(peers+l))>>8 ] = 65334;
}
}
}