diff options
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 7ce134d629..b8d65b00b3 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -250,7 +250,7 @@ command_process_create_cell(cell_t *cell, channel_t *chan) } circ = or_circuit_new(cell->circ_id, chan); - circ->_base.purpose = CIRCUIT_PURPOSE_OR; + circ->base_.purpose = CIRCUIT_PURPOSE_OR; circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_ONIONSKIN_PENDING); if (cell->command == CELL_CREATE) { char *onionskin = tor_malloc(ONIONSKIN_CHALLENGE_LEN); |