]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix compilation on systems with older compilers.
authorAlexander Færøy <ahf@torproject.org>
Thu, 10 Jun 2021 20:04:13 +0000 (20:04 +0000)
committerAlexander Færøy <ahf@torproject.org>
Fri, 18 Jun 2021 18:14:07 +0000 (18:14 +0000)
This patch fixes a build error with GCC 7.x which doesn't seem to accept
const int's as constants in macro initialization.

See: tpo/core/tor#40410

changes/ticket40410 [new file with mode: 0644]
src/feature/dirclient/dirclient.c

diff --git a/changes/ticket40410 b/changes/ticket40410
new file mode 100644 (file)
index 0000000..90d6f4b
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (compilation):
+    - Fix a compilation error when trying to build Tor with a compiler that
+      does not support expanding statitically initialized const values in
+      macro's. Fixes bug 40410; bugfix on 0.4.6.5.
index 79ec518c253c7f88040e4216d8a6cf797aa2ba24..fd677d33feb2ee2b87a7e4c515987d1120ea4b22 100644 (file)
@@ -1873,8 +1873,7 @@ dir_client_decompress_response_body(char **bodyp, size_t *bodylenp,
   /* If we're pretty sure that we have a compressed directory, and
    * we didn't manage to uncompress it, then warn and bail. */
   if (!plausible && !new_body) {
-    const int LOG_INTERVAL = 3600;
-    static ratelim_t warning_limit = RATELIM_INIT(LOG_INTERVAL);
+    static ratelim_t warning_limit = RATELIM_INIT(60 * 60);
     log_fn_ratelim(&warning_limit, LOG_WARN, LD_HTTP,
            "Unable to decompress HTTP body (tried %s%s%s, on %s).",
            description1,