aboutsummaryrefslogtreecommitdiff
path: root/src/feature/hs/hs_descriptor.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2018-09-21 08:52:47 -0400
committerDavid Goulet <dgoulet@torproject.org>2018-09-21 08:52:47 -0400
commit49e4bda50bdf723d6cdc8e7a0fb24619fded5f2c (patch)
treeae19da83f40da113f043665b41df970494383cb6 /src/feature/hs/hs_descriptor.c
parent672620901b43ee7f895ef2a01f058eeb5dffe399 (diff)
downloadtor-49e4bda50bdf723d6cdc8e7a0fb24619fded5f2c.tar.gz
tor-49e4bda50bdf723d6cdc8e7a0fb24619fded5f2c.zip
fixup! hs-v3: Silence some logging for client authorization
Diffstat (limited to 'src/feature/hs/hs_descriptor.c')
-rw-r--r--src/feature/hs/hs_descriptor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_descriptor.c b/src/feature/hs/hs_descriptor.c
index 9c85a729e9..b9a0c0ef1f 100644
--- a/src/feature/hs/hs_descriptor.c
+++ b/src/feature/hs/hs_descriptor.c
@@ -1389,7 +1389,7 @@ encrypted_data_length_is_valid(size_t len)
/* Make sure there is enough data for the salt and the mac. The equality is
there to ensure that there is at least one byte of encrypted data. */
if (len <= HS_DESC_ENCRYPTED_SALT_LEN + DIGEST256_LEN) {
- log_info(LD_REND, "Length of descriptor's encrypted data is too small. "
+ log_warn(LD_REND, "Length of descriptor's encrypted data is too small. "
"Got %lu but minimum value is %d",
(unsigned long)len, HS_DESC_ENCRYPTED_SALT_LEN + DIGEST256_LEN);
goto err;