summaryrefslogtreecommitdiffstats
path: root/plugins/check_smtp.d
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2026-04-09 14:54:08 +0200
committerGitHub <noreply@github.com>2026-04-09 14:54:08 +0200
commit1eace3a997cac6a98091238c6f71a2279183b1ad (patch)
tree0231a757533e58eb59418c90be69509b3d93498c /plugins/check_smtp.d
parent1db493092ca6a68ff690251cc428037b54019a73 (diff)
downloadmonitoring-plugins-1eace3a997cac6a98091238c6f71a2279183b1ad.tar.gz
Fix/compiler warnings (#2255)HEADmaster
* Fix compiler warning about comparing different signedness * Fix compiler warning about constant strings
Diffstat (limited to 'plugins/check_smtp.d')
-rw-r--r--plugins/check_smtp.d/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_smtp.d/config.h b/plugins/check_smtp.d/config.h
index b0d42ed1..47826362 100644
--- a/plugins/check_smtp.d/config.h
+++ b/plugins/check_smtp.d/config.h
@@ -40,8 +40,8 @@ typedef struct {
40 40
41 bool use_proxy_prefix; 41 bool use_proxy_prefix;
42#ifdef HAVE_SSL 42#ifdef HAVE_SSL
43 int days_till_exp_warn; 43 unsigned int days_till_exp_warn;
44 int days_till_exp_crit; 44 unsigned int days_till_exp_crit;
45 bool use_ssl; 45 bool use_ssl;
46 bool use_starttls; 46 bool use_starttls;
47 bool use_sni; 47 bool use_sni;