diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-03-26 13:30:17 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-03-26 13:30:17 +0000 |
commit | 6e51bdd5e4d5ab39fc1dca12e468b9a1c573cc1b (patch) | |
tree | f159519843ec58e5c5e64c4f23db5e7496e28273 /src/or/connection_edge.c | |
parent | da6bd21b72153b84a4c6831467d956ddd86f2532 (diff) | |
download | tor-6e51bdd5e4d5ab39fc1dca12e468b9a1c573cc1b.tar.gz tor-6e51bdd5e4d5ab39fc1dca12e468b9a1c573cc1b.zip |
r12274@catbus: nickm | 2007-03-26 09:29:18 -0400
Possibly resolve bug reported by xiando.
svn:r9903
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index b95a41b38a..de7dc36543 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -2240,7 +2240,7 @@ connection_exit_begin_conn(cell_t *cell, circuit_t *circ) return connection_exit_connect_dir(n_stream); } - TO_OR_CIRCUIT(circ)->n_streams = n_stream; n_stream->on_circuit = circ; + n_stream->on_circuit = circ; /* send it off to the gethostbyname farm */ switch (dns_resolve(n_stream)) { |