diff options
author | teor <teor@torproject.org> | 2019-10-18 13:28:02 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-10-20 19:26:48 +1000 |
commit | 57e86a6d749f487d81787439ac84d9bed8a70941 (patch) | |
tree | 7eee60fef16fc50aa4e3cbc9b42855a69ceb4cfd /src/app/config/config.c | |
parent | 7944b55ad1dbadaeb2a4f72b959d23bdc15b8d20 (diff) | |
download | tor-57e86a6d749f487d81787439ac84d9bed8a70941.tar.gz tor-57e86a6d749f487d81787439ac84d9bed8a70941.zip |
relay: Implement HAVE_MODULE_RELAY for routermode.c
Part of 32123.
Diffstat (limited to 'src/app/config/config.c')
-rw-r--r-- | src/app/config/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 37eab22912..c7ae453d5c 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -2757,6 +2757,7 @@ list_deprecated_options(void) static void list_enabled_modules(void) { + printf("%s: %s\n", "relay", have_module_relay() ? "yes" : "no"); printf("%s: %s\n", "dirauth", have_module_dirauth() ? "yes" : "no"); } |