First Commit
[librecmc/package-feed.git] / net / haproxy / patches / 0004-MINOR-show-Running-on-zlib-version.patch
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
6 (cherry picked from commit 255cc5184dc8483e4377d9de25670bd6e226cdba)
7 ---
8  src/haproxy.c | 1 +
9  1 file changed, 1 insertion(+)
10
11 diff --git a/src/haproxy.c b/src/haproxy.c
12 index 37d700b..9f5878a 100644
13 --- a/src/haproxy.c
14 +++ b/src/haproxy.c
15 @@ -287,6 +287,7 @@ void display_build_opts()
16  
17  #ifdef USE_ZLIB
18         printf("Built with zlib version : " ZLIB_VERSION "\n");
19 +       printf("Running on zlib version : %s\n", zlibVersion());
20  #elif defined(USE_SLZ)
21         printf("Built with libslz for stateless compression.\n");
22  #else /* USE_ZLIB */
23 -- 
24 2.7.3
25