From 499a3353b53a1e3828ee3da9075c8176b37c4b7f Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Thu, 30 Apr 2020 13:27:29 -0700 Subject: [PATCH] Change timer_list in BroList to be an unordered list. This type is used by Conn and Analyzer to hold onto timers being added and removed. We don't expect the elements in those lists to maintain an order as the list is being modified. --- src/BroList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BroList.h b/src/BroList.h index 48e9ebee04..c7637b6bd0 100644 --- a/src/BroList.h +++ b/src/BroList.h @@ -23,4 +23,4 @@ class Attr; typedef PList attr_list; class Timer; -typedef PList timer_list; +typedef PList timer_list;