diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-27 16:43:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-27 16:59:56 -0400 |
commit | 696f6f15697260255146d634e1529202cc4c2b77 (patch) | |
tree | a5b98f21bd227c96c9b88193e6dec64b10b9987c /src/or | |
parent | 0a9d8dcf2b0de62402efacc0fa4bc9a29109a6c0 (diff) | |
download | tor-696f6f15697260255146d634e1529202cc4c2b77.tar.gz tor-696f6f15697260255146d634e1529202cc4c2b77.zip |
Split confline into confline and conffile.
The "conffile" module knows about includes and filesystem access,
whereas confline doesn't. This will make it possible to put these
functions into libraries without introducing a cycle.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/config.c b/src/or/config.c index 98f3ff77b0..b0141b9c0e 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -111,6 +111,7 @@ #include <shlobj.h> #endif +#include "common/conffile.h" #include "common/procmon.h" #include "or/dirauth/dirvote.h" |