[libvirt] [PATCH] schemas: Allow '.' in CPU feature name

We already support CPU features with '.' in their name (e.g., sse4.1) so we should not forbid that in the schema. --- docs/schemas/domaincommon.rng | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/docs/schemas/domaincommon.rng b/docs/schemas/domaincommon.rng index 7a8f7f4..353faea 100644 --- a/docs/schemas/domaincommon.rng +++ b/docs/schemas/domaincommon.rng @@ -2921,7 +2921,7 @@ </define> <define name="featureName"> <data type="string"> - <param name='pattern'>[a-zA-Z0-9\-_]+</param> + <param name='pattern'>[a-zA-Z0-9\-_\.]+</param> </data> </define> <define name="timeDelta"> -- 1.7.8.2

On Wed, Jan 04, 2012 at 09:15:33 +0100, Michal Privoznik wrote:
On 03.01.2012 22:02, Jiri Denemark wrote:
We already support CPU features with '.' in their name (e.g., sse4.1) so we should not forbid that in the schema. --- docs/schemas/domaincommon.rng | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
ACK
Pushed, thanks. Jirka
participants (2)
-
Jiri Denemark
-
Michal Privoznik