mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
fix function headers from the descriptor-frequency commit
svn:r4809
This commit is contained in:
parent
435d2d8fde
commit
fa64d73fc7
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue