This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch main in repository tor.
commit 20d7c8ce14eccccf97ad05de5c5281360fefd3bc Author: Micah Elizabeth Scott beth@torproject.org AuthorDate: Mon Feb 27 16:12:03 2023 -0800
fix typo in HiddenServiceExportCircuitID
Really inconsequential, since the string was only used for logging a warning. --- src/feature/hs/hs_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/feature/hs/hs_config.c b/src/feature/hs/hs_config.c index 5600c40236..4561bd3e48 100644 --- a/src/feature/hs/hs_config.c +++ b/src/feature/hs/hs_config.c @@ -351,7 +351,7 @@ config_service_v3(const hs_opts_t *hs_opts, if (hs_opts->HiddenServiceExportCircuitID) { int ok; config->circuit_id_protocol = - helper_parse_circuit_id_protocol("HiddenServcieExportCircuitID", + helper_parse_circuit_id_protocol("HiddenServiceExportCircuitID", hs_opts->HiddenServiceExportCircuitID, &ok); if (!ok) {