From: Jeff Lucovsky Date: Tue, 16 Jan 2024 15:36:07 +0000 (-0500) Subject: htp/swf: Remove flash deprecation notice X-Git-Tag: suricata-8.0.0-beta1~1832 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=995f5fc8c5fa925e8ac1540f8f4bc2e68df3908a;p=thirdparty%2Fsuricata.git htp/swf: Remove flash deprecation notice Issue: 6605 Flash decompression will remain so the deprecation notice is not needed. --- diff --git a/src/app-layer-htp.c b/src/app-layer-htp.c index 5d48611812..1e8c0b8ea6 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 {