diff options
author | teor <teor@torproject.org> | 2019-10-29 12:40:20 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-10-29 12:40:20 +1000 |
commit | 30705e829415bb99da0141f0fde46175cb6b21bd (patch) | |
tree | fddde4f24bdda93ccf454af4f26efb60b9c733a4 | |
parent | b448f6044d37959f2b9bea3c5c2bc5f98c4d9170 (diff) | |
download | tor-30705e829415bb99da0141f0fde46175cb6b21bd.tar.gz tor-30705e829415bb99da0141f0fde46175cb6b21bd.zip |
app/config: Fix a comment typo in config.c
The options validation is now a callback.
Bugfix on 31241; not in any released version of tor.
-rw-r--r-- | src/app/config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 27b12f562f..2f40dd2bb9 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -32,7 +32,7 @@ * * Additionally, you might need to edit these places too: * <ul> - * <li>options_validate() below, in case you want to reject some possible + * <li>options_validate_cb() below, in case you want to reject some possible * values of the new configuration option. * <li>options_transition_allowed() below, in case you need to * forbid some or all changes in the option while Tor is |