diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2012-01-09 22:03:04 -0800 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2012-01-09 22:03:04 -0800 |
commit | 72ed4a41f5716923ce16d168ad421cc26ab2fbea (patch) | |
tree | 3cd27feea3169922c3dc218d6fe252b467e04501 /src/or/rendclient.c | |
parent | 37c90319e2ac0ecb71c9986ff55d07fe3da86ee6 (diff) | |
download | tor-72ed4a41f5716923ce16d168ad421cc26ab2fbea.tar tor-72ed4a41f5716923ce16d168ad421cc26ab2fbea.tar.gz |
Fix brown-paper-bag bug in #4759 fix
Fixes #4883, not yet in any release.
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 17c92ab6a..dff8bc33a 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -278,7 +278,7 @@ rend_client_send_introduction(origin_circuit_t *introcirc, /* Copy the rendezvous cookie from rendcirc to introcirc, so that * when introcirc gets an ack, we can change the state of the right * rendezvous circuit. */ - memcpy(rendcirc->rend_data->rend_cookie, introcirc->rend_data->rend_cookie, + memcpy(introcirc->rend_data->rend_cookie, rendcirc->rend_data->rend_cookie, REND_COOKIE_LEN); log_info(LD_REND, "Sending an INTRODUCE1 cell"); |