From 32fbc9738a18e8d66c94e238e5afd4631d295692 Mon Sep 17 00:00:00 2001 From: Andrea Shepard Date: Fri, 26 Aug 2016 00:01:25 +0000 Subject: [PATCH] Fix OOS comparator fix --- src/or/connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/connection.c b/src/or/connection.c index e3560af4c5..5ecd1ad7bf 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -4510,8 +4510,8 @@ oos_victim_comparator_for_orconns(or_connection_t *a, or_connection_t *b) a_circs = connection_or_get_num_circuits(a); b_circs = connection_or_get_num_circuits(b); - if (a_circs < b_circs) return -1; - else if (a_circs > b_circs) return 1; + if (a_circs < b_circs) return 1; + else if (a_circs > b_circs) return -1; else return 0; }