We have that done for first and second elements when parsing element string, do this for third element for convenience. Signed-off-by: Sergey Popovich <popovich_sergei@xxxxxxx> --- lib/parse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/parse.c b/lib/parse.c index 4db872e..405d6a2 100644 --- a/lib/parse.c +++ b/lib/parse.c @@ -1976,8 +1976,10 @@ ipset_parse_elem(struct ipset_session *session, D("parse elem part two: %s", a); parse_elem(session, type, IPSET_DIM_TWO, a); } - if (type->dimension > IPSET_DIM_TWO && b != NULL) + if (type->dimension > IPSET_DIM_TWO && b != NULL) { + D("parse elem part three: %s", b); parse_elem(session, type, IPSET_DIM_THREE, b); + } goto out; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html