]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
fixup! hs-v3: Silence some logging for client authorization
authorDavid Goulet <dgoulet@torproject.org>
Fri, 21 Sep 2018 12:52:47 +0000 (08:52 -0400)
committerDavid Goulet <dgoulet@torproject.org>
Fri, 21 Sep 2018 12:52:47 +0000 (08:52 -0400)
src/feature/hs/hs_descriptor.c

index 9c85a729e9ba724aac428b6ed6126b239846852a..b9a0c0ef1f0ec43c8d95f1f6f59176c3a8d243a1 100644 (file)
@@ -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;