]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect/sigorder: remove unused struct fields
authorVictor Julien <vjulien@oisf.net>
Fri, 21 Apr 2023 10:11:13 +0000 (12:11 +0200)
committerVictor Julien <vjulien@oisf.net>
Tue, 25 Apr 2023 09:36:37 +0000 (11:36 +0200)
(cherry picked from commit 03e0a60f9671cc23c605d556d37554c25aa605f3)

src/detect-engine-sigorder.h

index 686ce9280f4d642145fa6897b1fc3068eca0c3fa..7d7e105361714f1d70dba0997b3b87ea6efbafb2 100644 (file)
@@ -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;
 
 /**