summaryrefslogtreecommitdiff
path: root/src/or/command.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-04-02 23:30:54 +0000
committerNick Mathewson <nickm@torproject.org>2004-04-02 23:30:54 +0000
commite8345bfced697f96fbb885298e464760988d71e4 (patch)
tree4e09651306f7d2a007b3681b92e0c340eebe4d8b /src/or/command.c
parent25a9bc594f22fc29604b17cb0f7eaab74401db29 (diff)
downloadtor-e8345bfced697f96fbb885298e464760988d71e4.tar.gz
tor-e8345bfced697f96fbb885298e464760988d71e4.zip
refactor; start adding debugging logs to midpoint rend stuff
svn:r1445
Diffstat (limited to 'src/or/command.c')
-rw-r--r--src/or/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c
index cf7dffc5e9..b180c47505 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -103,7 +103,7 @@ static void command_process_create_cell(cell_t *cell, connection_t *conn) {
circ = circuit_new(cell->circ_id, conn);
circ->state = CIRCUIT_STATE_ONIONSKIN_PENDING;
- circ->purpose = CIRCUIT_PURPOSE_INTERMEDIATE;
+ circ->purpose = CIRCUIT_PURPOSE_OR;
memcpy(circ->onionskin, cell->payload, ONIONSKIN_CHALLENGE_LEN);