diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-26 10:09:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-26 10:09:03 -0400 |
commit | 16dffa523e382caaca03515af3f455dcd191d461 (patch) | |
tree | dfbe47fa8c7aed43ab351d0e6c44b751612bb287 /src/app/config/statefile.c | |
parent | 2402d95715286dcd3875cc0d0fb4766c42078a5e (diff) | |
download | tor-16dffa523e382caaca03515af3f455dcd191d461.tar.gz tor-16dffa523e382caaca03515af3f455dcd191d461.zip |
Rename confparse.[ch] identifiers to confmgt.[ch] identifiers.
This is an automated commit, generated by this command:
./scripts/maint/rename_c_identifier.py \
confparse.h confmgt.h \
confparse.c confmgt.c \
CONFPARSE_PRIVATE CONFMGT_PRIVATE \
TOR_CONFPARSE_H TOR_CONFMGT_H
Diffstat (limited to 'src/app/config/statefile.c')
-rw-r--r-- | src/app/config/statefile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/config/statefile.c b/src/app/config/statefile.c index 834ad93ed7..1d6f63cdeb 100644 --- a/src/app/config/statefile.c +++ b/src/app/config/statefile.c @@ -12,7 +12,7 @@ * * This 'state' file is a typed key-value store that allows multiple * entries for the same key. It follows the same metaformat as described - * in confparse.c, and uses the same code to read and write itself. + * in confmgt.c, and uses the same code to read and write itself. * * The state file is most suitable for small values that don't change too * frequently. For values that become very large, we typically use a separate @@ -32,7 +32,7 @@ #include "core/or/or.h" #include "core/or/circuitstats.h" #include "app/config/config.h" -#include "lib/confmgt/confparse.h" +#include "lib/confmgt/confmgt.h" #include "core/mainloop/mainloop.h" #include "core/mainloop/netstatus.h" #include "core/mainloop/connection.h" |