Преглед изворни кода

Add a missing ! to the check for CountPrivatebandwidth.

Nick Mathewson пре 14 година
родитељ
комит
f6cc8f0ee3
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/or/connection.c

+ 1 - 1
src/or/connection.c

@@ -1956,7 +1956,7 @@ connection_is_rate_limited(connection_t *conn)
   or_options_t *options = get_options();
   if (conn->linked)
     return 0; /* Internal connection */
-  else if (options->CountPrivateBandwidth &&
+  else if (! options->CountPrivateBandwidth &&
            (tor_addr_family(&conn->addr) == AF_UNSPEC || /* no address */
             tor_addr_is_internal(&conn->addr, 0)))
     return 0; /* Internal address */