aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitlist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-06-15 09:37:40 -0400
committerNick Mathewson <nickm@torproject.org>2012-06-15 15:07:52 -0400
commit2491fff5a6fda1c1e2044d332e551907a579929d (patch)
treecc8dac418a9ae68b9e7ec717f3a8764d532584be /src/or/circuitlist.c
parent8030ec4f272d470b9d01b7095f17252aaca163c2 (diff)
downloadtor-2491fff5a6fda1c1e2044d332e551907a579929d.tar.gz
tor-2491fff5a6fda1c1e2044d332e551907a579929d.zip
Triage the XXX023 and XXX022 comments: postpone many.
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r--src/or/circuitlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 5e3370adce..7ed942c8fe 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -1180,7 +1180,7 @@ circuit_mark_all_unused_circs(void)
* This is useful for letting the user change pseudonyms, so new
* streams will not be linkable to old streams.
*/
-/* XXX023 this is a bad name for what this function does */
+/* XXX024 this is a bad name for what this function does */
void
circuit_expire_all_dirty_circs(void)
{
@@ -1191,7 +1191,7 @@ circuit_expire_all_dirty_circs(void)
if (CIRCUIT_IS_ORIGIN(circ) &&
!circ->marked_for_close &&
circ->timestamp_dirty)
- /* XXXX023 This is a screwed-up way to say "This is too dirty
+ /* XXXX024 This is a screwed-up way to say "This is too dirty
* for new circuits. */
circ->timestamp_dirty -= options->MaxCircuitDirtiness;
}