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/lib/conf | |
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/lib/conf')
-rw-r--r-- | src/lib/conf/conftesting.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/conf/conftesting.h b/src/lib/conf/conftesting.h index dbfd564079..7e12fe76db 100644 --- a/src/lib/conf/conftesting.h +++ b/src/lib/conf/conftesting.h @@ -17,7 +17,7 @@ #define USE_CONF_TESTING /** * Union used when building in test mode typechecking the members of a type - * used with confparse.c. See CONF_CHECK_VAR_TYPE for a description of how + * used with confmgt.c. See CONF_CHECK_VAR_TYPE for a description of how * it is used. */ typedef union { char **STRING; @@ -47,7 +47,7 @@ typedef union { /* Macros to define extra members inside config_var_t fields, and at the * end of a list of them. */ -/* This is a somewhat magic type-checking macro for users of confparse.c. +/* This is a somewhat magic type-checking macro for users of confmgt.c. * It initializes a union member "confparse_dummy_values_t.conftype" with * the address of a static member "tp_dummy.member". This * will give a compiler warning unless the member field is of the correct |