diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2012-09-15 03:52:13 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-17 11:02:53 -0400 |
commit | 62babcaf0a88edb081529977981cf8865b32ea21 (patch) | |
tree | beef615e21bb0f58b37559f791f04eac230fa538 /src/or/rendservice.c | |
parent | f3916a685594a6e0e4f4a215a57f5aea34c8570c (diff) | |
download | tor-62babcaf0a88edb081529977981cf8865b32ea21.tar.gz tor-62babcaf0a88edb081529977981cf8865b32ea21.zip |
Implement and use crypto_pk_eq_keys
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 0bfa17d108..0fa04b63fe 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -2730,7 +2730,7 @@ find_intro_point(origin_circuit_t *circ) if (service == NULL) return NULL; SMARTLIST_FOREACH(service->intro_nodes, rend_intro_point_t *, intro_point, - if (crypto_pk_cmp_keys(intro_point->intro_key, circ->intro_key) == 0) { + if (crypto_pk_eq_keys(intro_point->intro_key, circ->intro_key)) { return intro_point; }); |