summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-09-27 14:39:57 -0400
committerNick Mathewson <nickm@torproject.org>2011-10-10 23:14:30 -0400
commitf726c67dd485bf67e02c12fbb04e99447e407487 (patch)
tree4cf07d102aeebc6e11c40ee004777ef8a8ee8aa9 /src
parent40f343e176c7f049adf9603f65c575e95b6e6faa (diff)
downloadtor-f726c67dd485bf67e02c12fbb04e99447e407487.tar.gz
tor-f726c67dd485bf67e02c12fbb04e99447e407487.zip
more verbose log for recording an odd cell
Diffstat (limited to 'src')
-rw-r--r--src/or/connection_or.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index adaaa2cbf8..004c19f08b 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -1608,7 +1608,8 @@ or_handshake_state_record_cell(or_handshake_state_t *state,
packed_cell_t packed;
if (!incoming) {
log_warn(LD_BUG, "We shouldn't be sending any non-variable-length cells "
- "whilemaking a handshake digest. But we think we are.");
+ "while making a handshake digest. But we think we are sending "
+ "one with type %d.", (int)cell->command);
}
dptr = incoming ? &state->digest_received : &state->digest_sent;
if (! *dptr)