]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a check-spaces complaint
authorSebastian Hahn <sebastian@torproject.org>
Fri, 8 Apr 2011 02:16:26 +0000 (04:16 +0200)
committerNick Mathewson <nickm@torproject.org>
Wed, 27 Apr 2011 03:55:23 +0000 (23:55 -0400)
src/or/connection_edge.c

index 5f322cae20bc971be77b8713bace50313a9691ae..1ee57abe4d31775f446c067e53ee6d304fd7e5a7 100644 (file)
@@ -841,7 +841,7 @@ addressmap_clear_excluded_trackexithosts(or_options_t *options)
     if (len < 6)
       continue; /* malformed. */
     dot = target + len - 6; /* dot now points to just before .exit */
-    dot = strrchr(dot, '.'); /* dot now points to the . before .exit, or NULL */
+    dot = strrchr(dot, '.'); /* dot now points to the . before .exit or NULL */
     if (!dot) {
       nodename = tor_strndup(target, len-5);
     } else {