From: Victor Julien Date: Fri, 21 Apr 2023 10:11:13 +0000 (+0200) Subject: detect/sigorder: remove unused struct fields X-Git-Tag: suricata-6.0.12~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2375ee7d2934d9d4569a6be95b69c5d3f69badb;p=thirdparty%2Fsuricata.git detect/sigorder: remove unused struct fields (cherry picked from commit 03e0a60f9671cc23c605d556d37554c25aa605f3) --- diff --git a/src/detect-engine-sigorder.h b/src/detect-engine-sigorder.h index 686ce9280f..7d7e105361 100644 --- a/src/detect-engine-sigorder.h +++ b/src/detect-engine-sigorder.h @@ -46,20 +46,10 @@ typedef struct SCSigSignatureWrapper_ { /* the wrapped signature */ Signature *sig; - /* used as the lower limit SCSigSignatureWrapper that is used by the next - * ordering function, which will order the incoming Sigwrapper after this - * (min) wrapper */ - struct SCSigSignatureWrapper_ *min; - /* used as the upper limit SCSigSignatureWrapper that is used by the next - * ordering function, which will order the incoming Sigwrapper below this - * (max) wrapper */ - struct SCSigSignatureWrapper_ *max; - /* user data that is to be associated with this sigwrapper */ int user[SC_RADIX_USER_DATA_MAX]; struct SCSigSignatureWrapper_ *next; - struct SCSigSignatureWrapper_ *prev; } SCSigSignatureWrapper; /**