[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [tor/master 6/7] Fix a missing stream_id argument; found by "tracktor"
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Fri, 3 Sep 2010 10:26:50 -0400
Subject: Fix a missing stream_id argument; found by "tracktor"
Commit: 296a7d83880d75296d6665295f9fc4cb41cb63d8
---
src/or/relay.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/relay.c b/src/or/relay.c
index 794f448..d0986c8 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -625,8 +625,8 @@ relay_send_command_from_edge(uint16_t stream_id, circuit_t *circ,
}
}
- if (circuit_package_relay_cell(&cell, circ, cell_direction, cpath_layer, 0)
- < 0) {
+ if (circuit_package_relay_cell(&cell, circ, cell_direction, cpath_layer,
+ stream_id) < 0) {
log_warn(LD_BUG,"circuit_package_relay_cell failed. Closing.");
circuit_mark_for_close(circ, END_CIRC_REASON_INTERNAL);
return -1;
--
1.7.1