diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-11 16:17:33 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-12 10:51:20 -0500 |
commit | 5e0ce4c578127d6479604280430db3d40f125cd6 (patch) | |
tree | 58205cca65ce91a3afefa280e9e3c13f8ef13ae6 /src | |
parent | e3578d52e4d32483422cb867786373c2b7b493b5 (diff) | |
download | tor-5e0ce4c578127d6479604280430db3d40f125cd6.tar tor-5e0ce4c578127d6479604280430db3d40f125cd6.tar.gz |
oops; add a missing semicolon
(Cherry-picked from fc35ee4910326dc1ae718482b30e57666a71df85)
Diffstat (limited to 'src')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 350666da1..1ace8e249 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1704,7 +1704,7 @@ router_rebuild_descriptor(int force) sending them on an unencrypted connection, don't allow them to try. */ ri->cache_info.send_unencrypted = 0; if (ei) - ei->cache_info.send_unencrypted = 0 + ei->cache_info.send_unencrypted = 0; } else { ri->cache_info.send_unencrypted = 1; if (ei) |