diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-08-03 11:19:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-08-03 11:19:08 -0400 |
commit | c9b8d4c086931d806655a48b16b82ed132613382 (patch) | |
tree | 82cbcf0540a9b73838071826938d32c41d49d21f | |
parent | f6c7e131a1ceb1786538445b19698039d9e5e4b0 (diff) | |
download | tor-c9b8d4c086931d806655a48b16b82ed132613382.tar.gz tor-c9b8d4c086931d806655a48b16b82ed132613382.zip |
We no longer use config_var_description_t
-rw-r--r-- | src/or/confparse.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/or/confparse.h b/src/or/confparse.h index 885c615202..ca6fb5ec43 100644 --- a/src/or/confparse.h +++ b/src/or/confparse.h @@ -61,13 +61,6 @@ typedef struct config_var_t { const char *initvalue; /**< String (or null) describing initial value. */ } config_var_t; -/** Represents an English description of a configuration variable; used when - * generating configuration file comments. */ -typedef struct config_var_description_t { - const char *name; - const char *description; -} config_var_description_t; - /** Type of a callback to validate whether a given configuration is * well-formed and consistent. See options_trial_assign() for documentation * of arguments. */ |