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.
This commit is contained in:
Nick Mathewson 2012-01-09 12:21:04 -05:00
parent cc1580dbe0
commit 6fd61cf767
2 changed files with 4 additions and 1 deletions

3
changes/bug4856 Normal file
View File

@ -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.

View File

@ -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;
}