1
0
mirror of git://erdgeist.org/opentracker synced 2025-02-04 19:16:23 +00:00

Fix: Did not time stamp a torrent correctly, that once timed out and came back to life

This commit is contained in:
erdgeist 2008-12-11 11:48:34 +00:00
parent 6d4845149c
commit 3df5e476d0

View File

@ -71,10 +71,11 @@ ot_torrent *add_peer_to_torrent( ot_hash *hash, ot_peer *peer WANT_SYNC_PARAM(
}
byte_zero( torrent->peer_list, sizeof( ot_peerlist ) );
torrent->peer_list->base = g_now_minutes;
} else
clean_single_torrent( torrent );
torrent->peer_list->base = g_now_minutes;
/* Check for peer in torrent */
peer_dest = vector_find_or_insert_peer( &(torrent->peer_list->peers), peer, &exactmatch );
if( !peer_dest ) {