diff options
-rw-r--r-- | proxy.c | 4 | ||||
-rw-r--r-- | trackerlogic.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -171,8 +171,8 @@ size_t remove_peer_from_torrent_proxy( ot_hash hash, ot_peer *peer ) { | |||
171 | if( exactmatch ) { | 171 | if( exactmatch ) { |
172 | ot_peerlist *peer_list = torrent->peer_list; | 172 | ot_peerlist *peer_list = torrent->peer_list; |
173 | switch( vector_remove_peer( &peer_list->peers, peer ) ) { | 173 | switch( vector_remove_peer( &peer_list->peers, peer ) ) { |
174 | case 2: peer_list->seed_count--; /* Fall throughs intended */ | 174 | case 2: peer_list->seed_count--; /* Intentional fallthrough */ |
175 | case 1: peer_list->peer_count--; /* Fall throughs intended */ | 175 | case 1: peer_list->peer_count--; /* Intentional fallthrough */ |
176 | default: break; | 176 | default: break; |
177 | } | 177 | } |
178 | } | 178 | } |
diff --git a/trackerlogic.c b/trackerlogic.c index ea4b489..719f8a2 100644 --- a/trackerlogic.c +++ b/trackerlogic.c | |||
@@ -365,8 +365,8 @@ size_t remove_peer_from_torrent( PROTO_FLAG proto, struct ot_workstruct *ws ) { | |||
365 | if( exactmatch ) { | 365 | if( exactmatch ) { |
366 | peer_list = torrent->peer_list; | 366 | peer_list = torrent->peer_list; |
367 | switch( vector_remove_peer( &peer_list->peers, &ws->peer ) ) { | 367 | switch( vector_remove_peer( &peer_list->peers, &ws->peer ) ) { |
368 | case 2: peer_list->seed_count--; /* Fall throughs intended */ | 368 | case 2: peer_list->seed_count--; /* Intentional fallthrough */ |
369 | case 1: peer_list->peer_count--; /* Fall throughs intended */ | 369 | case 1: peer_list->peer_count--; /* Intentional fallthrough */ |
370 | default: break; | 370 | default: break; |
371 | } | 371 | } |
372 | } | 372 | } |