From e57283ce136e13cd4682817098a05cd30bee2d98 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 1 Apr 2004 03:43:54 +0000 Subject: [PATCH] Make it compile. svn:r1427 --- trunk/src/or/rendservice.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/trunk/src/or/rendservice.c b/trunk/src/or/rendservice.c index 3e0383dae6..fb468b5ba6 100644 --- a/trunk/src/or/rendservice.c +++ b/trunk/src/or/rendservice.c @@ -265,14 +265,12 @@ typedef struct rend_introduction_t { } rend_introduction_t; int -rend_service_introduce(circuit_t *circuit,const char *request, int request_len) +rend_service_introduce(circuit_t *circuit, char *request, int request_len) { char *ptr, *rp_nickname, *r_cookie; - char pk_digest[20]; - char decrypted[1024]; + char buf[1024]; rend_service_t *service; int len, keylen; - crypto_cipher_env_t *cipher; if (circuit->purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO) { log_fn(LOG_WARN, "Got an INTRODUCE2 over a non-introduction circuit.");