diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-01-06 17:37:22 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-01-06 17:37:22 +0000 |
commit | 5e44581412b2b3bfb54449f3c73fc1d212f790af (patch) | |
tree | 69f978f4d95bca248c55962b28db49f6bc2cd9b9 /src | |
parent | 6f1ceaefaacec3f70e0ae68be8e67718a1f49d36 (diff) | |
download | tor-5e44581412b2b3bfb54449f3c73fc1d212f790af.tar.gz tor-5e44581412b2b3bfb54449f3c73fc1d212f790af.zip |
Clean up (and mark for 0.2.2.) comments relating to non-beauty of current bug-743 fix.
svn:r17966
Diffstat (limited to 'src')
-rw-r--r-- | src/or/rendclient.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 4affe55ab1..3568d50d86 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -598,9 +598,9 @@ rend_client_rendezvous_acked(origin_circuit_t *circ, const char *request, log_info(LD_REND,"Got rendezvous ack. This circuit is now ready for " "rendezvous."); circ->_base.purpose = CIRCUIT_PURPOSE_C_REND_READY; - /*XXXX This is a pretty brute approach. It'd be better to + /* XXXX022 This is a pretty brute-force approach. It'd be better to * attach only the connections that are waiting on this circuit, rather - * than trying to attach them all. See bug 743. */ + * than trying to attach them all. See comments bug 743. */ /* If we already have the introduction circuit built, make sure we send * the INTRODUCE cell _now_ */ connection_ap_attach_pending(); @@ -666,10 +666,9 @@ rend_client_receive_rendezvous(origin_circuit_t *circ, const char *request, onion_append_to_cpath(&circ->cpath, hop); circ->build_state->pending_final_cpath = NULL; /* prevent double-free */ - /*XXXX This is a pretty brute approach. It'd be better to + /* XXXX022 This is a pretty brute-force approach. It'd be better to * attach only the connections that are waiting on this circuit, rather - * than trying to attach them all. See bug 743.*/ - /* */ + * than trying to attach them all. See comments bug 743. */ connection_ap_attach_pending(); return 0; err: |