From: Willy Tarreau Date: Sun, 26 Jul 2009 18:40:05 +0000 (+0200) Subject: [BUILD] fix incorrect printf arg count with tcp_splice X-Git-Tag: v1.3.15.10~1 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=6bb8a28d28f39de47c7d52d1edb186335b547622;p=haproxy.git [BUILD] fix incorrect printf arg count with tcp_splice remove an extra arg. (cherry picked from commit bc69d8bbcf80ab8721449636e274a691f117680f) --- diff --git a/src/haproxy.c b/src/haproxy.c index 6c0f053f0..7992c1cbf 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -953,7 +953,7 @@ int main(int argc, char **argv) Alert("[%s.main()] Cannot enable tcp_splice.\n" " Make sure you have enough permissions and that the module is loadable.\n" " Alternatively, you may disable the 'tcpsplice' options in the configuration.\n" - "", argv[0], global.gid); + "", argv[0]); protocol_unbind_all(); exit(1); }