diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-02 23:30:54 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-02 23:30:54 +0000 |
commit | e8345bfced697f96fbb885298e464760988d71e4 (patch) | |
tree | 4e09651306f7d2a007b3681b92e0c340eebe4d8b /src/or/command.c | |
parent | 25a9bc594f22fc29604b17cb0f7eaab74401db29 (diff) | |
download | tor-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.c | 2 |
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); |