]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: init: -x can have a parameter starting with a dash
authorWilliam Lallemand <wlallemand@haproxy.com>
Thu, 4 Jun 2020 21:41:29 +0000 (23:41 +0200)
committerWilliam Lallemand <wlallemand@haproxy.org>
Fri, 5 Jun 2020 12:30:45 +0000 (14:30 +0200)
There is no reason the -x option can't take an argument which starts with
a -. This limitation must only be used for options that take a
non-finite list of parameters (-sf/-st)

This can be backported only if the previous patch which fixes
copy_argv() is backported too.

Could be backported as far as 1.8.

src/haproxy.c

index 3727486bbc4eccc2bfcd875930f5e6b393f9dc7a..ed971a46e4554d2129108b721632da5c68e5deb6 100644 (file)
@@ -1868,7 +1868,7 @@ static void init(int argc, char **argv)
                        else if (*flag == 'q')
                                arg_mode |= MODE_QUIET;
                        else if (*flag == 'x') {
-                               if (argc <= 1 || argv[1][0] == '-') {
+                               if (argc <= 1) {
                                        ha_alert("Unix socket path expected with the -x flag\n\n");
                                        usage(progname);
                                }