From: Nick Mathewson Date: Mon, 9 Jan 2012 17:21:04 +0000 (-0500) Subject: Fix a trivial log message error in renservice.c X-Git-Tag: tor-0.2.3.11-alpha~44^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6fd61cf767c0680707e034d9e6a4d46b44bd10af;p=thirdparty%2Ftor.git Fix a trivial log message error in renservice.c Fixes bug 4856; bugfix on 0.0.6 This bug was introduced in 79fc5217, back in 2004. --- diff --git a/changes/bug4856 b/changes/bug4856 new file mode 100644 index 0000000000..fa284a09f5 --- /dev/null +++ b/changes/bug4856 @@ -0,0 +1,3 @@ + o Trivial bugfixes + - Fix a typo in a log message in rend_service_rendezvous_has_opened(). + Fixes bug 4856; bugfix on Tor 0.0.6. diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 25695c5e68..bb3aacd924 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1564,7 +1564,7 @@ rend_service_rendezvous_has_opened(origin_circuit_t *circuit) circuit->rend_data->rend_pk_digest); if (!service) { log_warn(LD_GENERAL, "Internal error: unrecognized service ID on " - "introduction circuit."); + "rendezvous circuit."); reason = END_CIRC_REASON_INTERNAL; goto err; }