]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Make tor_version_same_series non-static
authorRobert Ransom <rransom.8774@gmail.com>
Tue, 25 Oct 2011 06:36:57 +0000 (23:36 -0700)
committerSebastian Hahn <sebastian@torproject.org>
Wed, 26 Oct 2011 21:36:30 +0000 (23:36 +0200)
src/or/routerparse.c
src/or/routerparse.h

index aed4fd131ee1e5221c318f18c3e95a41c73207c1..001c4d6c7f828be7a77500bd44521b42be897cfb 100644 (file)
@@ -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);
index 8b8cde25f686db49707eee3bccda4be7e09675de..527de5dc8b4127ca715be5d66b0034cf5d0d7d00 100644 (file)
@@ -47,6 +47,7 @@ version_status_t tor_version_is_obsolete(const char *myversion,
 int tor_version_parse(const char *s, tor_version_t *out);
 int tor_version_as_new_as(const char *platform, const char *cutoff);
 int tor_version_compare(tor_version_t *a, tor_version_t *b);
+int tor_version_same_series(tor_version_t *a, tor_version_t *b);
 void sort_version_list(smartlist_t *lst, int remove_duplicates);
 void assert_addr_policy_ok(smartlist_t *t);
 void dump_distinct_digest_count(int severity);