From 49979587cefe115cb7f834a934ddc1a36c3183bc Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 10 Apr 2025 10:16:51 +0200 Subject: [PATCH] detect/alert: minor cleanup --- src/detect-engine-alert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect-engine-alert.c b/src/detect-engine-alert.c index 0c5a84ebaa..0b20c4b7d8 100644 --- a/src/detect-engine-alert.c +++ b/src/detect-engine-alert.c @@ -393,7 +393,7 @@ static inline void PacketAlertFinalizeProcessQueue( bool skip_td = false; for (uint16_t i = 0; i < det_ctx->alert_queue_size; i++) { PacketAlert *pa = &det_ctx->alert_queue[i]; - const Signature *s = pa->s; // de_ctx->sig_array[pa->num]; + const Signature *s = pa->s; if (have_fw_rules && skip_td && (s->flags & SIG_FLAG_FIREWALL) == 0) { continue; }