diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-09-24 22:15:59 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-09-24 22:15:59 -0400 |
commit | c42a1886cccbcd4f6e6e90526b5132d6a6cbb2a4 (patch) | |
tree | 4abd1bf423d6c765f3bfcb906d688811eda3c9d1 /src | |
parent | ccceefe13674119768436bd1b9e3c4bf04ffc5ed (diff) | |
download | tor-c42a1886cccbcd4f6e6e90526b5132d6a6cbb2a4.tar.gz tor-c42a1886cccbcd4f6e6e90526b5132d6a6cbb2a4.zip |
Trivial whitespace fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/or/connection_edge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 8609b023d5..0663787fba 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -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); |