]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
htp/swf: Remove flash deprecation notice
authorJeff Lucovsky <jlucovsky@oisf.net>
Tue, 16 Jan 2024 15:36:07 +0000 (10:36 -0500)
committerVictor Julien <victor@inliniac.net>
Sat, 20 Jan 2024 19:59:27 +0000 (20:59 +0100)
Issue: 6605

Flash decompression will remain so the deprecation notice is not needed.

(cherry picked from commit 995f5fc8c5fa925e8ac1540f8f4bc2e68df3908a)

src/app-layer-htp.c

index b576ba3b7b975231f7e1e8f78c3aa1eabb16ce60..588a38353fdd2f068114ee093ac70036c11aa09f 100644 (file)
@@ -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 {