diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-05-12 20:58:27 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-05-12 20:58:27 +0000 |
commit | 537fb82cbb3b0488535f94bbccb0899f1b6b027a (patch) | |
tree | 9687918384012548a8a3f859b4c6e3d3ad4eb8f2 /src/or/rendclient.c | |
parent | 32c42a0ee25fec091ee3e889578ef730b2a37959 (diff) | |
download | tor-537fb82cbb3b0488535f94bbccb0899f1b6b027a.tar.gz tor-537fb82cbb3b0488535f94bbccb0899f1b6b027a.zip |
Make some functions static
svn:r1857
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 796f3a2d60..3727e41fcc 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -24,7 +24,7 @@ rend_client_introcirc_is_open(circuit_t *circ) /** Send the establish-rendezvous cell along a rendezvous circuit. if * it fails, mark the circ for close and return -1. else return 0. */ -int +static int rend_client_send_establish_rendezvous(circuit_t *circ) { tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND); @@ -389,11 +389,6 @@ void rend_client_desc_fetched(char *query, int success) { } } -/** Return 0 if one and two are the same service ids, else -1 or 1 */ -int rend_cmp_service_ids(const char *one, const char *two) { - return strcasecmp(one,two); -} - /** strdup a nickname for a random introduction * point of query. return NULL if error. */ |