diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-08-19 20:21:04 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-08-19 20:21:04 -0400 |
commit | 3c8baa77a1d2f5a0235adc48ad5650340683e8ee (patch) | |
tree | 35e3bf6752624c6c2f0db5f5e805b01ef00af9f8 /src/or/confparse.c | |
parent | 05ad2db283744609ea9414c2ba434a495e183a3f (diff) | |
download | tor-3c8baa77a1d2f5a0235adc48ad5650340683e8ee.tar.gz tor-3c8baa77a1d2f5a0235adc48ad5650340683e8ee.zip |
Log a warning when Testing options are deprecated.
Diffstat (limited to 'src/or/confparse.c')
-rw-r--r-- | src/or/confparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/confparse.c b/src/or/confparse.c index e9d56455f0..efcf4f981e 100644 --- a/src/or/confparse.c +++ b/src/or/confparse.c @@ -184,7 +184,7 @@ config_free_lines(config_line_t *front) /** If <b>key</b> is a deprecated configuration option, return the message * explaining why it is deprecated (which may be an empty string). Return NULL * if it is not deprecated. The <b>key</b> field must be fully expanded. */ -static const char * +const char * config_find_deprecation(const config_format_t *fmt, const char *key) { if (BUG(fmt == NULL) || BUG(key == NULL)) |