From 283593ca1b2f0e4a0f67ede35cf1f8c243792c68 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 5 Apr 2004 21:39:47 +0000 Subject: [PATCH] Use correct payload lengths when sending RENDEZVOUS1 cells svn:r1494 --- src/or/rendservice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 177716f8f0..ae6b97ca0a 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -574,7 +574,7 @@ rend_service_rendezvous_is_ready(circuit_t *circuit) /* Send the cell */ if (connection_edge_send_command(NULL, circuit, RELAY_COMMAND_RENDEZVOUS1, - buf, REND_COOKIE_LEN+DH_KEY_LEN+1, + buf, REND_COOKIE_LEN+DH_KEY_LEN+DIGEST_LEN, circuit->cpath->prev)<0) { log_fn(LOG_WARN, "Couldn't send RENDEZVOUS1 cell"); goto err;