From 9a34d1098e082b4fe976f0a6671581a0d967fdc5 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 24 Aug 2020 21:59:32 -0400 Subject: Use configOpen to load localCA --- bounce.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bounce.c') diff --git a/bounce.c b/bounce.c index 9a72db5..f1f5216 100644 --- a/bounce.c +++ b/bounce.c @@ -432,8 +432,8 @@ int main(int argc, char *argv[]) { FILE *localCA = NULL; if (caPath) { - localCA = fopen(caPath, "r"); - if (!localCA) err(EX_NOINPUT, "%s", caPath); + localCA = configOpen(caPath, "r"); + if (!localCA) return EX_NOINPUT; } struct SplitPath certSplit = splitPath(certPath); -- cgit 1.4.1