From: Alan T. DeKok Date: Fri, 10 Dec 2021 17:13:23 +0000 (-0500) Subject: only include the headers we need X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d932b95a18fd5e8b53de368af2d94090b9bb6806;p=thirdparty%2Ffreeradius-server.git only include the headers we need --- diff --git a/src/lib/tls/cache.c b/src/lib/tls/cache.c index 824393857e..a63af0bcf6 100644 --- a/src/lib/tls/cache.c +++ b/src/lib/tls/cache.c @@ -32,9 +32,10 @@ USES_APPLE_DEPRECATED_API /* OpenSSL API has been deprecated by Apple */ #include #include -#include +#include #include #include +#include #include #include diff --git a/src/lib/tls/conf.c b/src/lib/tls/conf.c index 2fda62cc90..dcaf2148ee 100644 --- a/src/lib/tls/conf.c +++ b/src/lib/tls/conf.c @@ -35,10 +35,11 @@ USES_APPLE_DEPRECATED_API /* OpenSSL API has been deprecated by Apple */ #endif #include -#include #include +#include #include #include +#include #include "base.h" #include "log.h" diff --git a/src/lib/tls/log.c b/src/lib/tls/log.c index bf608b61f9..87478bcfb4 100644 --- a/src/lib/tls/log.c +++ b/src/lib/tls/log.c @@ -29,8 +29,8 @@ USES_APPLE_DEPRECATED_API /* OpenSSL API has been deprecated by Apple */ #ifdef WITH_TLS #define LOG_PREFIX "tls" -#include #include +#include #include "log.h" #include "utils.h"