summaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-01-11 04:04:42 +0000
committerNick Mathewson <nickm@torproject.org>2006-01-11 04:04:42 +0000
commit8907391ad60629870a2602adc5a3d171f70f789b (patch)
tree72fa1e18545755e4760440bc65ed8e99e394bb69 /src/or/circuitbuild.c
parent5c78c894717de19b045ff1c001321a300f97b5ad (diff)
downloadtor-8907391ad60629870a2602adc5a3d171f70f789b.tar.gz
tor-8907391ad60629870a2602adc5a3d171f70f789b.zip
Fix wide lines
svn:r5793
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r--src/or/circuitbuild.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index c8896bc25b..2195810b20 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2191,7 +2191,8 @@ entry_guards_parse_state(or_state_t *state, int set, const char **err)
if (!strcasecmp(line->key, "EntryGuard")) {
smartlist_t *args = smartlist_create();
node = tor_malloc_zero(sizeof(entry_guard_t));
- node->made_contact = 1; /* all entry guards on disk have been contacted */
+ /* all entry guards on disk have been contacted */
+ node->made_contact = 1;
smartlist_add(new_entry_guards, node);
smartlist_split_string(args, line->value, " ",
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);