You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
749 B

  1. From 9d59ff222cc81ee356594cfa780349dd91376fd9 Mon Sep 17 00:00:00 2001
  2. From: Lukas Tribus <luky-37@hotmail.com>
  3. Date: Mon, 12 Sep 2016 21:42:14 +0000
  4. Subject: [PATCH 04/26] MINOR: show Running on zlib version
  5. (cherry picked from commit 255cc5184dc8483e4377d9de25670bd6e226cdba)
  6. ---
  7. src/haproxy.c | 1 +
  8. 1 file changed, 1 insertion(+)
  9. diff --git a/src/haproxy.c b/src/haproxy.c
  10. index 37d700b..9f5878a 100644
  11. --- a/src/haproxy.c
  12. +++ b/src/haproxy.c
  13. @@ -287,6 +287,7 @@ void display_build_opts()
  14. #ifdef USE_ZLIB
  15. printf("Built with zlib version : " ZLIB_VERSION "\n");
  16. + printf("Running on zlib version : %s\n", zlibVersion());
  17. #elif defined(USE_SLZ)
  18. printf("Built with libslz for stateless compression.\n");
  19. #else /* USE_ZLIB */
  20. --
  21. 2.7.3