Commit ec7c512d authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Merge remote-tracking branch 'dgoulet/bug21293_031_01'

parents 6bf82a49 368b0913
Loading
Loading
Loading
Loading

changes/bug21293

0 → 100644
+5 −0
Original line number Diff line number Diff line
  o Minor bugfixes (cell, logging):
    - Downgrade a log statement from bug to protocol warning because there is
      at least one use case where it can be triggered by a buggy tor
      implementation on the Internet for instance. Fixes bug 21293; bugfix on
      tor-0.1.1.14-alpha.
+2 −1
Original line number Diff line number Diff line
@@ -226,7 +226,8 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ,
    return 0;

  if (relay_crypt(circ, cell, cell_direction, &layer_hint, &recognized) < 0) {
    log_warn(LD_BUG,"relay crypt failed. Dropping connection.");
    log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
           "relay crypt failed. Dropping connection.");
    return -END_CIRC_REASON_INTERNAL;
  }