rules/transform: add to list-keywords

pull/3514/head
Victor Julien 7 years ago
parent 72dd4a5f92
commit ecb5d6419b

@ -264,6 +264,12 @@ static void PrintFeatureList(const SigTableElmt *e, char sep)
printf("compatible with decoder event only rule");
prev = 1;
}
if (e->Transform) {
if (prev == 1)
printf("%c", sep);
printf("transform");
prev = 1;
}
if (e->SupportsPrefilter) {
if (prev == 1)
printf("%c", sep);

Loading…
Cancel
Save