From: Jeff Lucovsky Date: Tue, 16 Jan 2024 15:36:07 +0000 (-0500) Subject: htp/swf: Remove flash deprecation notice X-Git-Tag: suricata-7.0.3~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40234b255d98925340196e91e579f09955bdc132;p=thirdparty%2Fsuricata.git htp/swf: Remove flash deprecation notice Issue: 6605 Flash decompression will remain so the deprecation notice is not needed. (cherry picked from commit 995f5fc8c5fa925e8ac1540f8f4bc2e68df3908a) --- diff --git a/src/app-layer-htp.c b/src/app-layer-htp.c index b576ba3b7b..588a38353f 100644 --- a/src/app-layer-htp.c +++ b/src/app-layer-htp.c @@ -2905,8 +2905,6 @@ static void HTPConfigParseParameters(HTPCfgRec *cfg_prec, ConfNode *s, if (strcasecmp("enabled", pval->name) == 0) { if (ConfValIsTrue(pval->val)) { cfg_prec->swf_decompression_enabled = 1; - SCLogWarning("Flash decompression is deprecated and will be removed in " - "Suricata 8; see ticket #6179"); } else if (ConfValIsFalse(pval->val)) { cfg_prec->swf_decompression_enabled = 0; } else {