From 9e3eaaf15d087e49824ef7813fda004ce349b1a5 Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Fri, 12 Nov 2010 16:12:55 -0500 Subject: [PATCH] Fix ipv4-addr definition in interface.rng Eric Blake pointed out a deficiency in this regex when it was copy-pasted into network.rng. This is just propogating the fix back to its origin. --- docs/schemas/interface.rng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/schemas/interface.rng b/docs/schemas/interface.rng index a0df9bacc7..75893b537a 100644 --- a/docs/schemas/interface.rng +++ b/docs/schemas/interface.rng @@ -439,7 +439,7 @@ - (((25[0-5])|(1[0-9]{2})|(2[0-4][0-9])|([0-9]{1,2}))\.){3}((25[0-5])|(1[0-9]{2})|(2[0-4][0-9])|([0-9]{1,2})) + (((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([1-9][0-9])|([0-9]))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([1-9][0-9])|([0-9])) -- GitLab