summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-08-22 06:45:18 +0000
committerRoger Dingledine <arma@torproject.org>2005-08-22 06:45:18 +0000
commitfa64d73fc767f1e24d1baeb67a400ab4d8e3fc93 (patch)
tree881f2ffde9a903756449f934ef715ed3a4207329
parent435d2d8fdef51bf3ce6456c2d22d7a10000918f4 (diff)
downloadtor-fa64d73fc767f1e24d1baeb67a400ab4d8e3fc93.tar.gz
tor-fa64d73fc767f1e24d1baeb67a400ab4d8e3fc93.zip
fix function headers from the descriptor-frequency commit
svn:r4809
-rw-r--r--src/or/config.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 2505d0afad..0f66c5bf14 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -2011,8 +2011,8 @@ config_lines_eq(config_line_t *a, config_line_t *b)
return 1;
}
-/** Return 1 if any option in <b>lines</b> will require us to rotate
- * the cpu and dns workers; else return 0. */
+/** Return 1 if any change from <b>old_options</b> to <b>new_options</b>
+ * will require us to rotate the cpu and dns workers; else return 0. */
static int
options_transition_affects_workers(or_options_t *old_options,
or_options_t *new_options)
@@ -2030,8 +2030,8 @@ options_transition_affects_workers(or_options_t *old_options,
return 0;
}
-/** Return 1 if any option in <b>lines</b> will require us to generate a new
- * descriptors; else return 0. */
+/** Return 1 if any change from <b>old_options</b> to <b>new_options</b>
+ * will require us to generate a new descriptor; else return 0. */
static int
options_transition_affects_descriptor(or_options_t *old_options,
or_options_t *new_options)