]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
fix a seg fault (whoops)
authorRoger Dingledine <arma@torproject.org>
Fri, 30 Apr 2004 16:35:48 +0000 (16:35 +0000)
committerRoger Dingledine <arma@torproject.org>
Fri, 30 Apr 2004 16:35:48 +0000 (16:35 +0000)
svn:r1755

src/or/rendservice.c

index 503cd0593a3317b0069c2de79a05a2d300de6615..2d12edd8f96140f57234b703a2c7129a163a23a9 100644 (file)
@@ -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.