MINOR: init: report use of libslz instead of "no compression"
It's confusing to see "no zlib support" followed by supported
compression algorithms. Fix this.
diff --git a/src/haproxy.c b/src/haproxy.c
index 62fb603..3b0d14d 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -288,8 +288,10 @@
#ifdef USE_ZLIB
printf("Built with zlib version : " ZLIB_VERSION "\n");
+#elif defined(USE_SLZ)
+ printf("Built with libslz for stateless compression.\n");
#else /* USE_ZLIB */
- printf("Built without zlib support (USE_ZLIB not set)\n");
+ printf("Built without compression support (neither USE_ZLIB nor USE_SLZ are set)\n");
#endif
printf("Compression algorithms supported :");
{