diff options
author | Miguel Jacq <mig@mig5.net> | 2020-06-18 13:47:15 +1000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-06-22 14:56:07 -0400 |
commit | 3d0e1c42d931a593ee326d17473700ba663cb48e (patch) | |
tree | a4c1cd00c08f65675fd5ca7232ed101989a71114 /src/feature | |
parent | 93d582b8e9ec60b78f52b31d56b7a946706f5dac (diff) | |
download | tor-3d0e1c42d931a593ee326d17473700ba663cb48e.tar.gz tor-3d0e1c42d931a593ee326d17473700ba663cb48e.zip |
Consistently use 'address' in Invalid v3 address responses to ONION_CLIENT_AUTH commands
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/control/control_hs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature/control/control_hs.c b/src/feature/control/control_hs.c index f5b331de9a..c8de03b318 100644 --- a/src/feature/control/control_hs.c +++ b/src/feature/control/control_hs.c @@ -291,7 +291,8 @@ handle_control_onion_client_auth_view(control_connection_t *conn, if (argc >= 1) { hsaddress = smartlist_get(args->args, 0); if (!hs_address_is_valid(hsaddress)) { - control_printf_endreply(conn, 512, "Invalid v3 addr \"%s\"", hsaddress); + control_printf_endreply(conn, 512, "Invalid v3 address \"%s\"", + hsaddress); goto err; } } |