]> 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>
Wed, 17 Jan 2024 16:20:29 +0000 (17:20 +0100)
Issue: 6605

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

src/app-layer-htp.c

index 5d48611812c1d4c33d004f651d1097517f7d5e77..1e8c0b8ea689040836a07dc557b7628c4d025ae6 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 {