From 4f6ca322172457ab0c5578ca5f9c7c948527d5fc Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Fri, 1 Apr 2022 23:36:05 +0200 Subject: [PATCH] BUG/MINOR: ssl: continue upon error when opening a directory w/ ca-file Previous patch was accidentaly breaking upon an error when itarating through a CA directory. This is not the expected behavior, the function must start processing the other files after the warning. --- src/ssl_ckch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ssl_ckch.c b/src/ssl_ckch.c index f1fba33b4..242dfb262 100644 --- a/src/ssl_ckch.c +++ b/src/ssl_ckch.c @@ -1169,7 +1169,6 @@ scandir_err: BIO_free(in); free(de); ha_warning("ca-file: '%s' couldn't load '%s'\n", path, trash.area); - break; } free(de_list);