From ecb5d6419b21c646475dc8b1c1a890cfaa7258d1 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 17 Oct 2018 09:52:29 +0200 Subject: [PATCH] rules/transform: add to list-keywords --- src/detect-engine-register.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/detect-engine-register.c b/src/detect-engine-register.c index 5f5c6a5d5c..1315da9215 100644 --- a/src/detect-engine-register.c +++ b/src/detect-engine-register.c @@ -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); -- 2.47.2