From: Victor Julien Date: Wed, 17 Oct 2018 07:52:29 +0000 (+0200) Subject: rules/transform: add to list-keywords X-Git-Tag: suricata-4.1.0~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecb5d6419b21c646475dc8b1c1a890cfaa7258d1;p=thirdparty%2Fsuricata.git rules/transform: add to list-keywords --- 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);