aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <sven@nierlein.de> 2018-10-24 13:36:47 +0200
committerGravatar Sven Nierlein <sven@nierlein.de> 2018-10-24 13:36:47 +0200
commitec590af49fa3498db52a118a519d8fcafd0b00ad (patch)
treec19f9934448f8b11e0f9dbc6f955c692cdd4f709
parent87065ac4482c40247e285da27351b72b3019fc87 (diff)
downloadmonitoring-plugins-ec590af49fa3498db52a118a519d8fcafd0b00ad.tar.gz
check_curl: code cleanup
-rw-r--r--plugins/check_curl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index cbf21ed9..4d378916 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -481,7 +481,7 @@ check_http (void)
ssl_library = curlhelp_get_ssl_library (curl);
/* try hard to get a stack of certificates to verify against */
- if (check_cert)
+ if (check_cert) {
#if LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 19, 1)
/* inform curl to report back certificates */
switch (ssl_library) {
@@ -530,6 +530,7 @@ check_http (void)
else
die (STATE_CRITICAL, "HTTP CRITICAL - Cannot retrieve certificates (no CURLOPT_SSL_CTX_FUNCTION, no OpenSSL library or libcurl too old and has no CURLOPT_CERTINFO)\n");
#endif /* LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 19, 1) */
+ }
#endif /* LIBCURL_FEATURE_SSL */