[tor-commits] [tor/master] Fix OOS comparator fix

nickm at torproject.org nickm at torproject.org
Fri Aug 26 13:46:46 UTC 2016


commit 32fbc9738a18e8d66c94e238e5afd4631d295692
Author: Andrea Shepard <andrea at torproject.org>
Date:   Fri Aug 26 00:01:25 2016 +0000

    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 e3560af..5ecd1ad 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;
 }
 





More information about the tor-commits mailing list