diff options
author | erdgeist <> | 2007-08-18 12:51:13 +0000 |
---|---|---|
committer | erdgeist <> | 2007-08-18 12:51:13 +0000 |
commit | ea276fa0bf0cd17537344549860e490e527db53f (patch) | |
tree | 54c996c6433bacd254f8d72ee9a1563dd4bb567e | |
parent | 3e47339b6ca4c54c9140fa3e28729d1a7b7d6aef (diff) |
Fixed the inverse interpretation of black/white listing
-rw-r--r-- | trackerlogic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trackerlogic.c b/trackerlogic.c index 184edae..c8b9e03 100644 --- a/trackerlogic.c +++ b/trackerlogic.c | |||
@@ -167,7 +167,7 @@ ot_torrent *add_peer_to_torrent( ot_hash *hash, ot_peer *peer, int from_changese | |||
167 | exactmatch = !exactmatch; | 167 | exactmatch = !exactmatch; |
168 | #endif | 168 | #endif |
169 | 169 | ||
170 | if( !exactmatch ) | 170 | if( exactmatch ) |
171 | return NULL; | 171 | return NULL; |
172 | #endif | 172 | #endif |
173 | 173 | ||