Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Core
Tor
Commits
7171ce2a
Commit
7171ce2a
authored
Sep 05, 2019
by
Nick Mathewson
🐛
Committed by
David Goulet
Sep 11, 2019
Browse files
config: make config_var_is_dumpable static.
parent
8d685aee
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/app/config/confparse.c
View file @
7171ce2a
...
...
@@ -614,7 +614,7 @@ config_var_is_listable(const config_var_t *var)
* This option may be set because a variable is hidden, or because it is
* derived from another variable which will already be written out.
**/
bool
static
bool
config_var_is_dumpable
(
const
config_var_t
*
var
)
{
if
(
config_var_is_derived
(
var
))
{
...
...
src/app/config/confparse.h
View file @
7171ce2a
...
...
@@ -191,7 +191,6 @@ void warn_deprecated_option(const char *what, const char *why);
bool
config_var_is_settable
(
const
config_var_t
*
var
);
bool
config_var_is_listable
(
const
config_var_t
*
var
);
bool
config_var_is_dumpable
(
const
config_var_t
*
var
);
/* Helper macros to compare an option across two configuration objects */
#define CFG_EQ_BOOL(a,b,opt) ((a)->opt == (b)->opt)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment