diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-10-24 23:36:57 -0700 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-10-26 23:36:30 +0200 |
commit | 4d0f152aadabd431924acb137990081269cffb3d (patch) | |
tree | 1b90ba9a3a06bc6931c1c9f1cbb4ac2a60e2965d /src/or/routerparse.c | |
parent | df05e5ef4d5e379e50b38e29fa23228e5b260e8a (diff) | |
download | tor-4d0f152aadabd431924acb137990081269cffb3d.tar.gz tor-4d0f152aadabd431924acb137990081269cffb3d.zip |
Make tor_version_same_series non-static
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r-- | src/or/routerparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c index aed4fd131e..001c4d6c7f 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -572,7 +572,6 @@ static int check_signature_token(const char *digest, int flags, const char *doctype); static crypto_pk_env_t *find_dir_signing_key(const char *str, const char *eos); -static int tor_version_same_series(tor_version_t *a, tor_version_t *b); #undef DEBUG_AREA_ALLOC @@ -4556,7 +4555,7 @@ tor_version_compare(tor_version_t *a, tor_version_t *b) /** Return true iff versions <b>a</b> and <b>b</b> belong to the same series. */ -static int +int tor_version_same_series(tor_version_t *a, tor_version_t *b) { tor_assert(a); |