Skip to content
Snippets Groups Projects
Commit 4eabb845 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix possible bug in circID selection when building circuits on combination OP/OR servers

svn:r830
parent 7a702d64
No related branches found
No related tags found
No related merge requests found
......@@ -777,6 +777,7 @@ int circuit_send_next_onion_skin(circuit_t *circ) {
crypt_path_t *hop;
routerinfo_t *router;
int r;
int circ_id_type;
assert(circ && circ->cpath);
......@@ -784,7 +785,9 @@ int circuit_send_next_onion_skin(circuit_t *circ) {
assert(circ->n_conn && circ->n_conn->type == CONN_TYPE_OR);
log_fn(LOG_DEBUG,"First skin; sending create cell.");
circ->n_circ_id = get_unique_circ_id_by_conn(circ->n_conn, CIRC_ID_TYPE_BOTH);
circ_id_type = decide_circ_id_type(options.Nickname,
circ->n_conn->nickname);
circ->n_circ_id = get_unique_circ_id_by_conn(circ->n_conn, circ_id_type);
memset(&cell, 0, sizeof(cell_t));
cell.command = CELL_CREATE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment