summaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-10-01 03:41:33 +0000
committerRoger Dingledine <arma@torproject.org>2008-10-01 03:41:33 +0000
commitc7af43a62497fb3e10c8de9a5bb8cc8113efb99c (patch)
tree847f11b6f733a3aa4af359b8d77b56f359327bc2 /src/or/router.c
parent914086628776bf915f7359a6486427c74391134a (diff)
downloadtor-c7af43a62497fb3e10c8de9a5bb8cc8113efb99c.tar.gz
tor-c7af43a62497fb3e10c8de9a5bb8cc8113efb99c.zip
Now NodeFamily and MyFamily config options allow spaces in
identity fingerprints, so it's easier to paste them in. Suggested by Lucky Green. svn:r17021
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c
index 29b930bbc0..c3dc9867de 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1313,7 +1313,7 @@ router_rebuild_descriptor(int force)
family = smartlist_create();
ri->declared_family = smartlist_create();
smartlist_split_string(family, options->MyFamily, ",",
- SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
+ SPLIT_SKIP_SPACE|SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
SMARTLIST_FOREACH(family, char *, name,
{
routerinfo_t *member;