dccp-option tests info->typemask, but it really should look at
info->invflags instead.
This bug goes back to commit v1.3.4~11.
References: Dave Täht via netfilter-devel on 2011-08-20 14:40:11 -0700
References: <CAA93jw6mpDL6rLXM+9SpAhafkDdKoSfhAxU8UM87vUqjuzjYJw@mail.gmail.com>
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
if (einfo->flags & XT_DCCP_OPTION) {
printf("%s --dccp-option %u",
- einfo->typemask & XT_DCCP_OPTION ? " !" : "",
+ einfo->invflags & XT_DCCP_OPTION ? " !" : "",
einfo->option);
}
}