From 8a09ee4103400a47e2b6a763429288533cb8a97b Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Mon, 23 Jan 2012 18:41:44 +0100 Subject: [PATCH] schema: Relax schema for domain name The domain schema enforced restrictions on the domain name string that the code doesn't. This patch relaxes the check, leaving the restrictions on the driver or hypervisor. The only invalid character is a newline. --- docs/schemas/domaincommon.rng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/schemas/domaincommon.rng b/docs/schemas/domaincommon.rng index 4fa968dc43..ecf34843a6 100644 --- a/docs/schemas/domaincommon.rng +++ b/docs/schemas/domaincommon.rng @@ -3030,7 +3030,7 @@ - [A-Za-z0-9_\.\+\-&:/]+ + [^\n]+