From: William Lallemand Date: Mon, 16 Feb 2026 14:10:35 +0000 (+0100) Subject: BUG/MINOR: ssl: lack crtlist_dup_ssl_conf() declaration X-Git-Tag: v3.4-dev5~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df8e05815c4689c52451f4ec2074b7dae808b780;p=thirdparty%2Fhaproxy.git BUG/MINOR: ssl: lack crtlist_dup_ssl_conf() declaration Add lacking crtlist_dup_ssl_conf() declaration in ssl_crt-list.h. Could be backported if needed. --- diff --git a/include/haproxy/ssl_crtlist.h b/include/haproxy/ssl_crtlist.h index 313226748..48a3f701d 100644 --- a/include/haproxy/ssl_crtlist.h +++ b/include/haproxy/ssl_crtlist.h @@ -28,6 +28,7 @@ /* crt-list entry functions */ void ssl_sock_free_ssl_conf(struct ssl_bind_conf *conf); +struct ssl_bind_conf *crtlist_dup_ssl_conf(struct ssl_bind_conf *src); char **crtlist_dup_filters(char **args, int fcount); void crtlist_free_filters(char **args); void crtlist_entry_free(struct crtlist_entry *entry);