diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-11 16:17:33 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-11 16:17:33 -0500 |
commit | fc35ee4910326dc1ae718482b30e57666a71df85 (patch) | |
tree | c113f58c82119f37549a501da34e9929ce06abf8 /src/or | |
parent | 5f29bc71b37a83e6d583864ad9b7cd97f513e24a (diff) | |
download | tor-fc35ee4910326dc1ae718482b30e57666a71df85.tar.gz tor-fc35ee4910326dc1ae718482b30e57666a71df85.zip |
oops; add a missing semicolon
Diffstat (limited to 'src/or')
-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 899246f85e..4492ed271f 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1944,7 +1944,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) |