]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Trivial whitespace fixes
authorNick Mathewson <nickm@torproject.org>
Sun, 25 Sep 2011 02:15:59 +0000 (22:15 -0400)
committerNick Mathewson <nickm@torproject.org>
Sun, 25 Sep 2011 02:15:59 +0000 (22:15 -0400)
src/or/connection_edge.c

index 8609b023d5726e3aa95fc018d5e4f640dd059e3f..0663787fba352d3d45de4413bddd263555806a88 100644 (file)
@@ -842,8 +842,8 @@ addressmap_clear_excluded_trackexithosts(or_options_t *options)
     if (len < 6)
       continue; /* malformed. */
     dot = target + len - 6; /* dot now points to just before .exit */
-    while(dot > target && *dot != '.')
-       dot--;
+    while (dot > target && *dot != '.')
+        dot--;
     if (*dot == '.') dot++;
     nodename = tor_strndup(dot, len-5-(dot-target));;
     ri = router_get_by_nickname(nodename, 0);