BUG/MEDIUM: peers: old stick table updates could be repushed.

Because the stick table updates tree was not properly initialized to EB_ROOT_UNIQUE.
diff --git a/src/stick_table.c b/src/stick_table.c
index 3328616..93fb10c 100644
--- a/src/stick_table.c
+++ b/src/stick_table.c
@@ -395,6 +395,7 @@
 	if (t->size) {
 		memset(&t->keys, 0, sizeof(t->keys));
 		memset(&t->exps, 0, sizeof(t->exps));
+		t->updates = EB_ROOT_UNIQUE;
 
 		t->pool = create_pool("sticktables", sizeof(struct stksess) + t->data_size + t->key_size, MEM_F_SHARED);