From: Nick Mathewson Date: Tue, 25 Mar 2014 15:55:27 +0000 (-0400) Subject: Demote "Invalid length on ESTABLISH_RENDEZVOUS" to protocol_warn X-Git-Tag: tor-0.2.5.4-alpha~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07eb481492ddd24f403ef75db65a00b38f2b5d92;p=thirdparty%2Ftor.git Demote "Invalid length on ESTABLISH_RENDEZVOUS" to protocol_warn Fixes bug 11279 --- diff --git a/changes/bug11279 b/changes/bug11279 new file mode 100644 index 0000000000..1e9da41180 --- /dev/null +++ b/changes/bug11279 @@ -0,0 +1,3 @@ + o Minor features: + - Warn less verbosely when receiving a misformed ESTABLISH_RENDEZVOUS + cell. Fixes ticket 11279. diff --git a/src/or/rendmid.c b/src/or/rendmid.c index 1bd11f6dc0..c68f6da597 100644 --- a/src/or/rendmid.c +++ b/src/or/rendmid.c @@ -231,7 +231,8 @@ rend_mid_establish_rendezvous(or_circuit_t *circ, const uint8_t *request, } if (request_len != REND_COOKIE_LEN) { - log_warn(LD_PROTOCOL, "Invalid length on ESTABLISH_RENDEZVOUS."); + log_fn(LOG_PROTOCOL_WARN, + LD_PROTOCOL, "Invalid length on ESTABLISH_RENDEZVOUS."); goto err; }