aboutsummaryrefslogtreecommitdiff
path: root/src/feature/hs
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-02-08 08:37:46 -0500
committerNick Mathewson <nickm@torproject.org>2019-02-08 08:37:46 -0500
commit7f59b9fb1fdc4519e663fa82e416eccae88e8934 (patch)
treeb7835f898ac1cd47a0e02bea5da20c6eee017733 /src/feature/hs
parentb1ae2fd65ba165722dc121df7bb0be4ec5d6597c (diff)
parentab6534781996404ca57e9f5b0cbdda998579c329 (diff)
downloadtor-7f59b9fb1fdc4519e663fa82e416eccae88e8934.tar.gz
tor-7f59b9fb1fdc4519e663fa82e416eccae88e8934.zip
Merge branch 'maint-0.3.5'
Diffstat (limited to 'src/feature/hs')
-rw-r--r--src/feature/hs/hs_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/feature/hs/hs_client.c b/src/feature/hs/hs_client.c
index d4eee50bb7..bd43ef6132 100644
--- a/src/feature/hs/hs_client.c
+++ b/src/feature/hs/hs_client.c
@@ -1637,17 +1637,17 @@ hs_config_client_authorization(const or_options_t *options,
* as a key of global map in the future. */
if (hs_parse_address(auth->onion_address, &identity_pk,
NULL, NULL) < 0) {
- client_service_authorization_free(auth);
log_warn(LD_REND, "The onion address \"%s\" is invalid in "
"file %s", filename, auth->onion_address);
+ client_service_authorization_free(auth);
continue;
}
if (digest256map_get(auths, identity_pk.pubkey)) {
- client_service_authorization_free(auth);
log_warn(LD_REND, "Duplicate authorization for the same hidden "
"service address %s.",
- safe_str_client(auth->onion_address));
+ safe_str_client_opts(options, auth->onion_address));
+ client_service_authorization_free(auth);
goto end;
}