summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-30 16:35:48 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-30 16:35:48 +0000
commitac4cb9bdd19bee938d1cb4cb9def727f92c8d2fc (patch)
tree93d1f544b8971d54984a6f9897d64db38db6c757
parent2b5e6aef15fa3658480f24435e03d616b6f0a465 (diff)
downloadtor-ac4cb9bdd19bee938d1cb4cb9def727f92c8d2fc.tar.gz
tor-ac4cb9bdd19bee938d1cb4cb9def727f92c8d2fc.zip
fix a seg fault (whoops)
svn:r1755
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 503cd0593a..2d12edd8f9 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -492,7 +492,7 @@ rend_service_relaunch_rendezvous(circuit_t *oldcirc)
memcpy(newcirc->rend_query, oldcirc->rend_query, REND_SERVICE_ID_LEN+1);
memcpy(newcirc->rend_pk_digest, oldcirc->rend_pk_digest, DIGEST_LEN);
- memcpy(newcirc->rend_splice, oldcirc->rend_splice, REND_COOKIE_LEN);
+ memcpy(newcirc->rend_cookie, oldcirc->rend_cookie, REND_COOKIE_LEN);
}
/* Launch a circuit to serve as an introduction point.