BUILD: http: remove the two unused constructors in rules and ana
__http_protocol_init() and __http_rules_init() were empty leftovers
from a previous more intense use of constructors. Let's just get rid
of them now.
diff --git a/src/http_ana.c b/src/http_ana.c
index 7cbec58..187b881 100644
--- a/src/http_ana.c
+++ b/src/http_ana.c
@@ -5173,12 +5173,6 @@
DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn));
-__attribute__((constructor))
-static void __http_protocol_init(void)
-{
-}
-
-
/*
* Local variables:
* c-indent-level: 8
diff --git a/src/http_rules.c b/src/http_rules.c
index d3f41bf..8e257ea 100644
--- a/src/http_rules.c
+++ b/src/http_rules.c
@@ -490,11 +490,6 @@
return NULL;
}
-__attribute__((constructor))
-static void __http_rules_init(void)
-{
-}
-
/*
* Local variables:
* c-indent-level: 8