From 4d57aee9ad5a2d0712e49b1c70ebcd47fbb391af Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Wed, 7 Oct 2020 15:37:40 +0200 Subject: [PATCH] schema: nwfilter: Allow all accepted values for 'ipsetflags' The parser for the 'ipsetflags' accepts the 'src' and 'dst' values stripping case. Express the same in the schema to pass validation of any accepted string. Signed-off-by: Peter Krempa Reviewed-by: Michal Privoznik --- docs/schemas/nwfilter.rng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/schemas/nwfilter.rng b/docs/schemas/nwfilter.rng index 75caf61b89..64a607e62f 100644 --- a/docs/schemas/nwfilter.rng +++ b/docs/schemas/nwfilter.rng @@ -980,7 +980,7 @@ - (src|dst)(,(src|dst)){0,5} + ([Ss][Rr][Cc]|[Dd][Ss][Tt])(,([Ss][Rr][Cc]|[Dd][Ss][Tt])){0,5}