From 9d4108b390dad70fae1456fac7cc8cd6de38e324 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sun, 26 Jul 2009 20:40:05 +0200 Subject: [PATCH] [BUILD] fix incorrect printf arg count with tcp_splice remove an extra arg. (cherry picked from commit bc69d8bbcf80ab8721449636e274a691f117680f) --- src/haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haproxy.c b/src/haproxy.c index 7dae2d5396..2a4ed6a766 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -1054,7 +1054,7 @@ int main(int argc, char **argv) " Make sure you have enough permissions and that the module is loadable.\n" " Alternatively, you may disable the 'tcpsplice' options in the configuration\n" " or add 'nosplice' in the global section, or start with '-dS'.\n" - "", argv[0], global.gid); + "", argv[0]); protocol_unbind_all(); exit(1); } -- 2.47.3