diff options
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 5da79db38e..d7f7209994 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -4000,8 +4000,10 @@ or_state_save(time_t now) * new string describing the supported configuration variables and their * types. */ int -config_getinfo_helper(const char *question, char **answer) +getinfo_helper_config(control_connection_t *conn, + const char *question, char **answer) { + (void) conn; if (!strcmp(question, "config/names")) { smartlist_t *sl = smartlist_create(); int i; |