mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
conf/network_conf: use virStringParseYesNo helper
A function virStringParseYesNo was added to convert string 'yes' to true and 'no' to false, so use this helper to replace 'STREQ(.*, \"yes\")' and 'STREQ(.*, \"no\")' as it allows us to drop several repetitive if-then-else string->bool conversion blocks. Reviewed-by: Cole Robinson <crobinso@redhat.com> Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com> Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com> Acked-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
7ae802ebb3
commit
5da6615baf
@ -1682,9 +1682,7 @@ virNetworkDefParseXML(xmlXPathContextPtr ctxt,
|
||||
*/
|
||||
ipv6nogwStr = virXPathString("string(./@ipv6)", ctxt);
|
||||
if (ipv6nogwStr) {
|
||||
if (STREQ(ipv6nogwStr, "yes")) {
|
||||
def->ipv6nogw = true;
|
||||
} else if (STRNEQ(ipv6nogwStr, "no")) {
|
||||
if (virStringParseYesNo(ipv6nogwStr, &def->ipv6nogw) < 0) {
|
||||
virReportError(VIR_ERR_XML_ERROR,
|
||||
_("Invalid ipv6 setting '%s' in network '%s'"),
|
||||
ipv6nogwStr, def->name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user