aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_confparse.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-10-26 10:09:03 -0400
committerNick Mathewson <nickm@torproject.org>2019-10-26 10:09:03 -0400
commit16dffa523e382caaca03515af3f455dcd191d461 (patch)
treedfbe47fa8c7aed43ab351d0e6c44b751612bb287 /src/test/test_confparse.c
parent2402d95715286dcd3875cc0d0fb4766c42078a5e (diff)
downloadtor-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/test/test_confparse.c')
-rw-r--r--src/test/test_confparse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_confparse.c b/src/test/test_confparse.c
index 0c12e35f8a..39e2de866c 100644
--- a/src/test/test_confparse.c
+++ b/src/test/test_confparse.c
@@ -4,17 +4,17 @@
/* See LICENSE for licensing information */
/*
- * Tests for confparse.c module that we use to parse various
+ * Tests for confmgt.c module that we use to parse various
* configuration/state file types.
*/
-#define CONFPARSE_PRIVATE
+#define CONFMGT_PRIVATE
#include "orconfig.h"
#include "core/or/or.h"
#include "lib/encoding/confline.h"
#include "feature/nodelist/routerset.h"
-#include "lib/confmgt/confparse.h"
+#include "lib/confmgt/confmgt.h"
#include "test/test.h"
#include "test/log_test_helpers.h"