diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-08-26 19:15:52 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-08-28 09:42:17 -0400 |
commit | 760d0c056fafdcefd9ac58d48f8ccf473d0ea877 (patch) | |
tree | d8954209449390c8c5a6e4d1ff31fa7b87015dba /src/app/config/confparse.c | |
parent | 638e58379a4c5347dd4952f12dd3b1054e7bb19f (diff) | |
download | tor-760d0c056fafdcefd9ac58d48f8ccf473d0ea877.tar.gz tor-760d0c056fafdcefd9ac58d48f8ccf473d0ea877.zip |
finish a comment explaining all_abbrevs
Diffstat (limited to 'src/app/config/confparse.c')
-rw-r--r-- | src/app/config/confparse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/config/confparse.c b/src/app/config/confparse.c index 8018f6a6d4..95e73eeab5 100644 --- a/src/app/config/confparse.c +++ b/src/app/config/confparse.c @@ -119,8 +119,9 @@ struct config_mgr_t { smartlist_t *subconfigs; /** A smartlist of managed_var_t objects for all configuration formats. */ smartlist_t *all_vars; - /** A smartlist of config_abbrev_t objects for all abbreviations. These - * objects are */ + /** A smartlist of config_abbrev_t objects for all configuration + * formats. These objects are used to track synonyms and abbreviations for + * different configuration options. */ smartlist_t *all_abbrevs; /** A smartlist of config_deprecation_t for all configuration formats. */ smartlist_t *all_deprecations; |