[MAJOR] last bunch of capture changes for mempool v2
The header captures had lots of pools. They have all been transformed.
diff --git a/src/haproxy.c b/src/haproxy.c
index 3442389..4e22e19 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -616,7 +616,7 @@
h_next = h->next;
if (h->name)
free(h->name);
- pool_destroy(h->pool);
+ pool_destroy2(h->pool);
free(h);
h = h_next;
}/* end while(h) */
@@ -627,7 +627,7 @@
if (h->name)
free(h->name);
- pool_destroy(h->pool);
+ pool_destroy2(h->pool);
free(h);
h = h_next;
}/* end while(h) */
@@ -652,8 +652,8 @@
l = l_next;
}/* end while(l) */
- pool_destroy((void **) p->req_cap_pool);
- pool_destroy((void **) p->rsp_cap_pool);
+ pool_destroy2(p->req_cap_pool);
+ pool_destroy2(p->rsp_cap_pool);
p = p->next;
}/* end while(p) */