mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
network: Use new util function to check name
New util function virXMLCheckIllegalChars is now used to test if parsed network contains illegal char '/' in it's name. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
7a2216460f
commit
e1b8196866
@ -2117,11 +2117,8 @@ virNetworkDefParseXML(xmlXPathContextPtr ctxt)
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (strchr(def->name, '/')) {
|
||||
virReportError(VIR_ERR_XML_ERROR,
|
||||
_("name %s cannot contain '/'"), def->name);
|
||||
if (virXMLCheckIllegalChars("name", def->name, "/") < 0)
|
||||
goto error;
|
||||
}
|
||||
|
||||
/* Extract network uuid */
|
||||
tmp = virXPathString("string(./uuid[1])", ctxt);
|
||||
|
Loading…
x
Reference in New Issue
Block a user