diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-03-15 09:48:26 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-03-15 09:48:26 -0700 |
commit | 98abe1420d21cf67931229fb776117927c7ab1d6 (patch) | |
tree | 36b6450c853b31c33a375756809da98febdd24de /src | |
parent | 3af59dcaee4e5ef147dc263dc9f5bf0e5cc72aad (diff) | |
download | tor-98abe1420d21cf67931229fb776117927c7ab1d6.tar.gz tor-98abe1420d21cf67931229fb776117927c7ab1d6.zip |
Fix a log message typo
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 28ce97ebde..e0605dcd4d 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -2822,7 +2822,7 @@ networkstatus_parse_vote_from_string(const char *s, const char **eos_out, ns->flavor = flav = flavor; } if (flav != FLAV_NS && ns_type != NS_TYPE_CONSENSUS) { - log_warn(LD_DIR, "Flavor found on non-consenus networkstatus."); + log_warn(LD_DIR, "Flavor found on non-consensus networkstatus."); goto err; } |