summaryrefslogtreecommitdiff
path: root/src/or/rendmid.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-08-07 01:03:33 +0000
committerNick Mathewson <nickm@torproject.org>2004-08-07 01:03:33 +0000
commit380f32f07db89b94a93f755af9a5a77b81b9dab9 (patch)
tree6c506b4055da8369dd6ccf079a84ebb13d50c3e0 /src/or/rendmid.c
parent9952b37456c03b09e5768aaf7e3cf8baa2353d84 (diff)
downloadtor-380f32f07db89b94a93f755af9a5a77b81b9dab9.tar.gz
tor-380f32f07db89b94a93f755af9a5a77b81b9dab9.zip
hex_encode is obsoleted by base16_encode, and never actually worked in the first place. (Thanks to Timo Lindfors for noticing the never-actually-worked part.)
svn:r2175
Diffstat (limited to 'src/or/rendmid.c')
-rw-r--r--src/or/rendmid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c
index 6c2b372956..cc5045b2a7 100644
--- a/src/or/rendmid.c
+++ b/src/or/rendmid.c
@@ -208,7 +208,7 @@ rend_mid_establish_rendezvous(circuit_t *circ, const char *request, int request_
memcpy(circ->rend_cookie, request, REND_COOKIE_LEN);
- hex_encode(request,4,hexid);
+ base16_encode(hexid,9,request,4);
log_fn(LOG_INFO, "Established rendezvous point on circuit %d for cookie %s",
circ->p_circ_id, hexid);
@@ -230,7 +230,7 @@ rend_mid_rendezvous(circuit_t *circ, const char *request, int request_len)
char hexid[9];
if (request_len>=4) {
- hex_encode(request,4,hexid);
+ base16_encode(hexid,9,request,4);
log_fn(LOG_INFO, "Got request for rendezvous from circuit %d to cookie %s",
circ->p_circ_id, hexid);
}