diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-12 14:18:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-26 10:56:53 -0700 |
commit | afe0419db7adb643aff7c2f2c99f2e2302c6dc7d (patch) | |
tree | 13ebf7a0b58a43c9c9535192407f669058f6f876 /src/or/router.c | |
parent | 3a3120819c8f600ef7d22ddf3f5476791c7e1d9b (diff) | |
download | tor-afe0419db7adb643aff7c2f2c99f2e2302c6dc7d.tar.gz tor-afe0419db7adb643aff7c2f2c99f2e2302c6dc7d.zip |
Rename get_supported_protocols to protover_get_supported_protocols
Diffstat (limited to 'src/or/router.c')
-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 7f227b5bec..1449b57619 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2125,7 +2125,7 @@ router_build_fresh_descriptor(routerinfo_t **r, extrainfo_t **e) get_platform_str(platform, sizeof(platform)); ri->platform = tor_strdup(platform); - ri->protocol_list = tor_strdup(get_supported_protocols()); + ri->protocol_list = tor_strdup(protover_get_supported_protocols()); /* compute ri->bandwidthrate as the min of various options */ ri->bandwidthrate = get_effective_bwrate(options); |