Explorar o código

tor_zstd_format_version shouldn't be built when !HAVE_ZSTD

Fixes bug 25276; bugfix not in any released Tor.
Nick Mathewson %!s(int64=7) %!d(string=hai) anos
pai
achega
5a9ada342f
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      src/common/compress_zstd.c

+ 2 - 0
src/common/compress_zstd.c

@@ -58,6 +58,7 @@ tor_zstd_method_supported(void)
 #endif
 }
 
+#ifdef HAVE_ZSTD
 /** Format a zstd version number as a string in <b>buf</b>. */
 static void
 tor_zstd_format_version(char *buf, size_t buflen, unsigned version_number)
@@ -68,6 +69,7 @@ tor_zstd_format_version(char *buf, size_t buflen, unsigned version_number)
                version_number / 100 % 100,
                version_number % 100);
 }
+#endif
 
 #define VERSION_STR_MAX_LEN 16 /* more than enough space for 99.99.99 */