diff options
author | Gene Czarcinski <gene@czarc.net> | 2012-09-06 12:08:22 -0400 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2012-09-06 10:59:33 -0600 |
commit | f20b7dbe633acf7df9921027c6ca4f0b97918c8c (patch) | |
tree | 52b8682ef7c3ed51ae8cc40627ad1fe13fde4117 /src/network | |
parent | build: improved handling of <execinfo.h>, BSD <net/if.h> (diff) | |
download | libvirt-f20b7dbe633acf7df9921027c6ca4f0b97918c8c.tar.gz libvirt-f20b7dbe633acf7df9921027c6ca4f0b97918c8c.tar.bz2 libvirt-f20b7dbe633acf7df9921027c6ca4f0b97918c8c.zip |
remove dnsmasq command line parameter "--filterwin2k"
This patch removed the "--filterwin2k" dnsmasq command line
parameter which was unnecessary for domain specification,
possibly blocked some usage, and was command line clutter.
Gene Czarcinski <gene@czarc.net>
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/bridge_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/bridge_driver.c b/src/network/bridge_driver.c index 53eebed2e..808c84335 100644 --- a/src/network/bridge_driver.c +++ b/src/network/bridge_driver.c @@ -543,7 +543,7 @@ networkBuildDnsmasqArgv(virNetworkObjPtr network, /* need to specify local even if no domain specified */ virCommandAddArgFormat(cmd, "--local=/%s/", network->def->domain ? network->def->domain : ""); - virCommandAddArgList(cmd, "--domain-needed", "--filterwin2k", NULL); + virCommandAddArg(cmd, "--domain-needed"); if (pidfile) virCommandAddArgPair(cmd, "--pid-file", pidfile); |