diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-09-21 10:03:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 10:03:52 (GMT) |
commit | 7e81cb3c1fb4123bd4d423b2c9e86538dec19e39 (patch) | |
tree | 1ef0975b2a059daa7b8552aaf6371b3320ef477b /lib/utils_base.h | |
parent | 220455a11e8f1dd3a86ac4725cf0c799c8e3b21b (diff) | |
parent | d5d0b50e89ee600b6a605344aad004c60b88994d (diff) | |
download | monitoring-plugins-7e81cb3c1fb4123bd4d423b2c9e86538dec19e39.tar.gz |
Merge pull request #1868 from RincewindsHat/compiler_warning_part_3
Replace deprecated TLS client functions
Diffstat (limited to 'lib/utils_base.h')
-rw-r--r-- | lib/utils_base.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/utils_base.h b/lib/utils_base.h index 5906550..9cb4276 100644 --- a/lib/utils_base.h +++ b/lib/utils_base.h | |||
@@ -2,7 +2,9 @@ | |||
2 | #define _UTILS_BASE_ | 2 | #define _UTILS_BASE_ |
3 | /* Header file for Monitoring Plugins utils_base.c */ | 3 | /* Header file for Monitoring Plugins utils_base.c */ |
4 | 4 | ||
5 | #include "sha256.h" | 5 | #ifndef USE_OPENSSL |
6 | # include "sha256.h" | ||
7 | #endif | ||
6 | 8 | ||
7 | /* This file holds header information for thresholds - use this in preference to | 9 | /* This file holds header information for thresholds - use this in preference to |
8 | individual plugin logic */ | 10 | individual plugin logic */ |