summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0061anonymous_automerge_0
Commit message (Collapse)AuthorAgeFilesLines
* segtree: release single element already contained in an intervalPablo Neira Ayuso2021-03-241-0/+11
Before this patch: table ip x { chain y { ip saddr { 1.1.1.1-1.1.1.2, 1.1.1.1 } } } results in: table ip x { chain y { ip saddr { 1.1.1.1 } } } due to incorrect interval merge logic. If the element 1.1.1.1 is already contained in an existing interval 1.1.1.1-1.1.1.2, release it. Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1512 Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>