BUG/MINOR: ssl: Fix OCSP resp update fails with the same certificate configured twice.
(cherry picked from commit 1d3865b096b43b9a6d6a564ffb424ffa6f1ef79f)
diff --git a/src/ssl_sock.c b/src/ssl_sock.c
index 9eacf9f..328b978 100644
--- a/src/ssl_sock.c
+++ b/src/ssl_sock.c
@@ -195,7 +195,7 @@
 	return -1;
 }
 
-static struct eb_root cert_ocsp_tree;
+static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
 
 /* This function starts to check if the OCSP response (in DER format) contained
  * in chunk 'ocsp_response' is valid (else exits on error).