commit 2402d95715286dcd3875cc0d0fb4766c42078a5e Author: Nick Mathewson nickm@torproject.org Date: Sat Oct 26 10:07:14 2019 -0400
Rename confparse.[ch] to confmgt.[ch]
This will break compilation until includes etc are fixed. --- src/lib/confmgt/{confparse.c => confmgt.c} | 2 +- src/lib/confmgt/{confparse.h => confmgt.h} | 0 src/lib/confmgt/include.am | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/lib/confmgt/confparse.c b/src/lib/confmgt/confmgt.c similarity index 99% rename from src/lib/confmgt/confparse.c rename to src/lib/confmgt/confmgt.c index b08dc26da..ccef40bd2 100644 --- a/src/lib/confmgt/confparse.c +++ b/src/lib/confmgt/confmgt.c @@ -5,7 +5,7 @@ /* See LICENSE for licensing information */
/** - * \file confparse.c + * \file confmgt.c * * \brief Back-end for parsing and generating key-value files, used to * implement the torrc file format and the state file. diff --git a/src/lib/confmgt/confparse.h b/src/lib/confmgt/confmgt.h similarity index 100% rename from src/lib/confmgt/confparse.h rename to src/lib/confmgt/confmgt.h diff --git a/src/lib/confmgt/include.am b/src/lib/confmgt/include.am index 81cd868e5..d3a7a7cd6 100644 --- a/src/lib/confmgt/include.am +++ b/src/lib/confmgt/include.am @@ -6,7 +6,7 @@ endif
# ADD_C_FILE: INSERT SOURCES HERE. src_lib_libtor_confmgt_a_SOURCES = \ - src/lib/confmgt/confparse.c \ + src/lib/confmgt/confmgt.c \ src/lib/confmgt/structvar.c \ src/lib/confmgt/type_defs.c \ src/lib/confmgt/typedvar.c \ @@ -19,7 +19,7 @@ src_lib_libtor_confmgt_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
# ADD_C_FILE: INSERT HEADERS HERE. noinst_HEADERS += \ - src/lib/confmgt/confparse.h \ + src/lib/confmgt/confmgt.h \ src/lib/confmgt/structvar.h \ src/lib/confmgt/type_defs.h \ src/lib/confmgt/typedvar.h \
tor-commits@lists.torproject.org