commit d7d6da28d4264aa2d018cfe9437117ae6dbefce9 Author: Sebastian Hahn sebastian@torproject.org Date: Thu Feb 9 16:22:01 2012 +0100
Fix a check-spaces complaint --- src/or/routerparse.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 28ec945..95cef93 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -4427,7 +4427,8 @@ microdescs_parse_from_string(const char *s, const char *eos,
/** Return true iff this Tor version can answer directory questions * about microdescriptors. */ -int tor_version_supports_microdescriptors(const char *platform) +int +tor_version_supports_microdescriptors(const char *platform) { return tor_version_as_new_as(platform, "0.2.3.1-alpha"); }
tor-commits@lists.torproject.org