mirror of https://gitee.com/openkylin/libvirt.git
schema: nwfiter: Allow leading/trailing whitespace in 'variable-name-type'
The reference string parser tolerates some leading/trailing whitespace for the reference strings as witnessed by tests/nwfilterxml2xmlin/iter-test3.xml Allow them in the schema so that the test passes schema validation. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
4d57aee9ad
commit
6ecd479d01
|
@ -725,7 +725,7 @@
|
|||
|
||||
<define name="variable-name-type">
|
||||
<data type="string">
|
||||
<param name="pattern">$[a-zA-Z0-9_]+(\[[ ]*[@]?[0-9]+[ ]*\])?</param>
|
||||
<param name="pattern">$[ ]*[a-zA-Z0-9_]+(\[[ ]*[@]?[0-9]+[ ]*\])?[ ]*</param>
|
||||
</data>
|
||||
</define>
|
||||
|
||||
|
|
Loading…
Reference in New Issue