diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-01-18 12:25:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-01-18 12:25:08 -0500 |
commit | b655e77ec5d8d793e4313e7dd24da1d5c8e9e898 (patch) | |
tree | 81878b5dfee30e049ed2fa115c68b7fe95a8d365 | |
parent | 9609d132599f8770f2037bbaac8ade6245b24ab4 (diff) | |
parent | 4cca7fb99b814d772587facbabfc9b5ad5b40d45 (diff) | |
download | tor-b655e77ec5d8d793e4313e7dd24da1d5c8e9e898.tar.gz tor-b655e77ec5d8d793e4313e7dd24da1d5c8e9e898.zip |
Merge branch 'maint-0.3.3' into release-0.3.3
-rw-r--r-- | changes/bug29029 | 5 | ||||
-rw-r--r-- | src/or/rendmid.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/changes/bug29029 b/changes/bug29029 new file mode 100644 index 0000000000..e100a8c2ed --- /dev/null +++ b/changes/bug29029 @@ -0,0 +1,5 @@ + o Minor bugfixes (logging, onion services): + - Stop logging "Tried to establish rendezvous on non-OR circuit..." as + a warning. Instead, log it as a protocol warning, because there is + nothing that relay operators can do to fix it. Fixes bug 29029; + bugfix on 0.2.5.7-rc. diff --git a/src/or/rendmid.c b/src/or/rendmid.c index c4a34ca62c..521023179a 100644 --- a/src/or/rendmid.c +++ b/src/or/rendmid.c @@ -227,9 +227,9 @@ rend_mid_establish_rendezvous(or_circuit_t *circ, const uint8_t *request, (unsigned)circ->p_circ_id); if (circ->base_.purpose != CIRCUIT_PURPOSE_OR) { - log_warn(LD_PROTOCOL, - "Tried to establish rendezvous on non-OR circuit with purpose %s", - circuit_purpose_to_string(circ->base_.purpose)); + log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, + "Tried to establish rendezvous on non-OR circuit with purpose %s", + circuit_purpose_to_string(circ->base_.purpose)); goto err; } |