aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorRobert Ransom <rransom.8774@gmail.com>2011-10-05 15:55:23 -0700
committerRobert Ransom <rransom.8774@gmail.com>2011-10-30 02:17:01 -0700
commit6b26999146ab5e21fbfe43fe5084005a34ba2415 (patch)
treea46cae70920d1db74f140082db3511248d0c666c /src/or/rendservice.c
parentc60148c7f52e76397b79faaddf1bdb6204c4d170 (diff)
downloadtor-6b26999146ab5e21fbfe43fe5084005a34ba2415.tar.gz
tor-6b26999146ab5e21fbfe43fe5084005a34ba2415.zip
Correct a log message
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 24d5937c5c..d21fdcc4bf 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -945,7 +945,8 @@ rend_service_introduce(origin_circuit_t *circuit, const uint8_t *request,
service = rend_service_get_by_pk_digest(
circuit->rend_data->rend_pk_digest);
if (!service) {
- log_warn(LD_REND, "Got an INTRODUCE2 cell for an unrecognized service %s.",
+ log_warn(LD_BUG, "Internal error: Got an INTRODUCE2 cell on an intro "
+ "circ for an unrecognized service %s.",
escaped(serviceid));
return -1;
}