schema: nodedev: Adjust allowed characters in 'vpdFieldValueFormat'

The check in 'virPCIVPDResourceIsValidTextValue' allows any printable
characters, thus the XML schema should do the same.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2024-01-29 16:12:09 +01:00
parent 2ccac1e42f
commit edaa1112ff

View File

@ -869,7 +869,7 @@
<define name="vpdFieldValueFormat">
<data type="string">
<param name="pattern">[0-9a-zA-F -_,.:;=]{0,255}</param>
<param name="pattern">.{0,255}</param>
</data>
</define>