diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-04-08 04:16:26 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-04-26 23:55:23 -0400 |
commit | e03e90bf591f649f7883807f99354634e837ee48 (patch) | |
tree | aed714c9c2a5cb0451666e5c9e8e582704283bed /src/or | |
parent | 92ec36a061de17dd4e378d5ce34d82f91eee9f86 (diff) | |
download | tor-e03e90bf591f649f7883807f99354634e837ee48.tar.gz tor-e03e90bf591f649f7883807f99354634e837ee48.zip |
Fix a check-spaces complaint
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 5f322cae20..1ee57abe4d 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -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 { |