summaryrefslogtreecommitdiff
path: root/src/or/rendclient.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2009-07-02 10:20:20 -0400
committerNick Mathewson <nickm@torproject.org>2009-07-02 10:20:20 -0400
commit078c34e28e02bcb3a9fd28f3fee3c5e956ec8e1f (patch)
treed46527ead8a0ec1fe1bfa7ae886adc209afcaf4d /src/or/rendclient.c
parent9f28cfe86af085e94b9b929041851dc8386231b2 (diff)
parent4e8d22846b4eed41525fb9e5f755b56515f0dd5a (diff)
downloadtor-078c34e28e02bcb3a9fd28f3fee3c5e956ec8e1f.tar.gz
tor-078c34e28e02bcb3a9fd28f3fee3c5e956ec8e1f.zip
Merge commit 'origin/maint-0.2.1'
[Didn't take Karsten's full bug 1024 workaround, since 0.2.2 doesn't use v0 rend descs.]
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r--src/or/rendclient.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index 00b77d8370..f65c20f2a0 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -91,7 +91,9 @@ rend_client_send_introduction(origin_circuit_t *introcirc,
}
});
if (!intro_key) {
- log_warn(LD_BUG, "Internal error: could not find intro key.");
+ log_warn(LD_BUG, "Internal error: could not find intro key; we "
+ "only have a v2 rend desc with %d intro points.",
+ smartlist_len(entry->parsed->intro_nodes));
goto err;
}
if (crypto_pk_get_digest(intro_key, payload)<0) {