mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Drop empty argument from dnsmasq call
since dnsmasq >= 2.56 now bails out with empty arguments. See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613944 for the Debian bug and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589885 for the upstream reasoning.
This commit is contained in:
parent
7b6286b780
commit
acab8a97ce
@ -477,7 +477,7 @@ networkBuildDnsmasqArgv(virNetworkObjPtr network,
|
|||||||
virCommandAddArgPair(cmd, "--pid-file", pidfile);
|
virCommandAddArgPair(cmd, "--pid-file", pidfile);
|
||||||
|
|
||||||
/* *no* conf file */
|
/* *no* conf file */
|
||||||
virCommandAddArgList(cmd, "--conf-file=", "", NULL);
|
virCommandAddArg(cmd, "--conf-file=");
|
||||||
|
|
||||||
virCommandAddArgList(cmd,
|
virCommandAddArgList(cmd,
|
||||||
"--except-interface", "lo",
|
"--except-interface", "lo",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user