summaryrefslogtreecommitdiff
path: root/src/or/routerparse.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-02-15 15:33:34 -0500
committerNick Mathewson <nickm@torproject.org>2014-02-15 15:33:34 -0500
commitb3a69074933492080629d45b1c890606aa2bd08a (patch)
tree53f4929f0c1e19ed7ff9022ac194defe8ce78f25 /src/or/routerparse.c
parent67749475f56532235602e0c8d1a9a59a68d816c3 (diff)
downloadtor-b3a69074933492080629d45b1c890606aa2bd08a.tar.gz
tor-b3a69074933492080629d45b1c890606aa2bd08a.zip
Remove a bunch of functions that were never called.
Diffstat (limited to 'src/or/routerparse.c')
-rw-r--r--src/or/routerparse.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 4ad316cee7..9414a533b9 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -2040,14 +2040,6 @@ routerstatus_parse_entry_from_string(memarea_t *area,
return rs;
}
-/** Helper to sort a smartlist of pointers to routerstatus_t */
-int
-compare_routerstatus_entries(const void **_a, const void **_b)
-{
- const routerstatus_t *a = *_a, *b = *_b;
- return fast_memcmp(a->identity_digest, b->identity_digest, DIGEST_LEN);
-}
-
int
compare_vote_routerstatus_entries(const void **_a, const void **_b)
{