From 212e993e712be2f13f4fa70c40e4321be7f1b306 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 18 May 2020 08:33:09 +0200 Subject: [PATCH] BUILD: ssl: include errno.h in ssl_crtlist.c In issue #632 boringssl build were broken by the lack of errno.h include in ssl_crtlist.c Bug introduced by 6e9556b ("REORG: ssl: move crtlist functions to src/ssl_crtlist.c"). No backport needed. --- src/ssl_crtlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssl_crtlist.c b/src/ssl_crtlist.c index b60f452..25d8445 100644 --- a/src/ssl_crtlist.c +++ b/src/ssl_crtlist.c @@ -9,6 +9,7 @@ * */ +#include #include #include #include -- 1.7.10.4