From edaa1112ffef253013dcc3318794cebfaa2a6cb7 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 29 Jan 2024 16:12:09 +0100 Subject: [PATCH] schema: nodedev: Adjust allowed characters in 'vpdFieldValueFormat' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The check in 'virPCIVPDResourceIsValidTextValue' allows any printable characters, thus the XML schema should do the same. Signed-off-by: Peter Krempa Reviewed-by: Ján Tomko --- src/conf/schemas/nodedev.rng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf/schemas/nodedev.rng b/src/conf/schemas/nodedev.rng index fba4021754..ff07313968 100644 --- a/src/conf/schemas/nodedev.rng +++ b/src/conf/schemas/nodedev.rng @@ -869,7 +869,7 @@ - [0-9a-zA-F -_,.:;=]{0,255} + .{0,255}