diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-01 03:43:54 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-01 03:43:54 +0000 |
commit | 9feb44d3c45ebeb6bb42ef98adabf68c20695c73 (patch) | |
tree | 637850ed477c5e2c84cc864ae522e1a73e5306ca /src | |
parent | c671b1069559a86f5b9ad425fc92d09748cd5cfd (diff) | |
download | tor-9feb44d3c45ebeb6bb42ef98adabf68c20695c73.tar tor-9feb44d3c45ebeb6bb42ef98adabf68c20695c73.tar.gz |
Make it compile.
svn:r1427
Diffstat (limited to 'src')
-rw-r--r-- | src/or/rendservice.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 3e0383dae..fb468b5ba 100644 --- a/src/or/rendservice.c +++ b/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."); |