diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-10 09:39:09 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-09-11 09:42:19 -0400 |
commit | fe5033d3b0f618493ec8ffd4274352ed42835bdb (patch) | |
tree | ac67c8a1b6b771e00227bb22374e180b0c4b05dd /src/app | |
parent | 14f48cb08387d2f9df3a16fb1816b80ce1649344 (diff) | |
download | tor-fe5033d3b0f618493ec8ffd4274352ed42835bdb.tar.gz tor-fe5033d3b0f618493ec8ffd4274352ed42835bdb.zip |
Clarify documentation on config_var_is_listable()
Here we make it clear we're only looking at listable variable names,
not at whether the variables themselves are gettable.
Also, remove an extraneous h.
(This commit is not a fixup, because of rebase conflicts.)
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/confparse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/config/confparse.c b/src/app/config/confparse.c index dcbad0b900..930484620b 100644 --- a/src/app/config/confparse.c +++ b/src/app/config/confparse.c @@ -589,9 +589,9 @@ config_var_needs_copy(const config_var_t *var) return ! config_var_has_flag(var, CFLG_NOCOPY); } -/**h - * Return true iff variable <b>var</b> should appear on list of variables - * given to the controller or the CLI. +/** + * Return true iff variable <b>var</b> should appear on list of variable + * names given to the controller or the CLI. **/ bool config_var_is_listable(const config_var_t *var) |