summaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-05-09 04:15:46 +0000
committerNick Mathewson <nickm@torproject.org>2007-05-09 04:15:46 +0000
commitceac39aa8aa498a39b2e83f87a776bd7c225846b (patch)
tree2546300e02093a2984dd8f1d60a6a65a936f9407 /src/or/circuitbuild.c
parent66f9240eb57da944d10f134ed0d3f0110e289a18 (diff)
downloadtor-ceac39aa8aa498a39b2e83f87a776bd7c225846b.tar.gz
tor-ceac39aa8aa498a39b2e83f87a776bd7c225846b.zip
r12697@catbus: nickm | 2007-05-09 00:15:40 -0400
Change authority_type_t to a set of flags; use it more consistently. svn:r10144
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r--src/or/circuitbuild.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index bdce36caa6..24a8f0c729 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -1740,7 +1740,8 @@ extend_info_from_router(routerinfo_t *r)
* It's a general purpose router unless it's on our bridges list.
*/
static uint8_t
-get_router_purpose_from_digest(char *digest) {
+get_router_purpose_from_digest(char *digest)
+{
(void)digest;
return ROUTER_PURPOSE_GENERAL; /* XXX020 */
}