diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-15 09:21:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-15 09:21:29 -0400 |
commit | b48f8a8114575793046a8e9d3544d6b2d0a17f82 (patch) | |
tree | 406217796ac1f3ef57e50f3bebf2591a1da9b08a /src/or/circuitbuild.c | |
parent | c9899ee64008b63cb9867115ac684590dd50f902 (diff) | |
download | tor-b48f8a8114575793046a8e9d3544d6b2d0a17f82.tar.gz tor-b48f8a8114575793046a8e9d3544d6b2d0a17f82.zip |
Fix whitespace.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index a15f4c28b5..237b61ab18 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2420,7 +2420,8 @@ build_state_get_exit_nickname(cpath_build_state_t *state) } /** Return true iff the given address can be used to extend to. */ -int extend_info_addr_is_allowed(const tor_addr_t *addr) +int +extend_info_addr_is_allowed(const tor_addr_t *addr) { tor_assert(addr); @@ -2434,3 +2435,4 @@ int extend_info_addr_is_allowed(const tor_addr_t *addr) disallow: return 0; } + |