diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-13 00:50:51 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-13 00:50:51 +0100 |
commit | a2e9ade442bb93d632d7ef5b734103b4e1e4b07a (patch) | |
tree | b66b8ca2a14a48805d5cd9c6cc6e854d43ed38cd | |
parent | fa4a03e1a80d3de8c85172834326d51b936f316a (diff) | |
download | monitoring-plugins-a2e9ade442bb93d632d7ef5b734103b4e1e4b07a.tar.gz |
Fix typo
-rw-r--r-- | plugins/check_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 2cc6c398..2878fd60 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -265,7 +265,7 @@ int main(int argc, char **argv) { | |||
265 | tls_connection_result = mp_set_subcheck_state(tls_connection_result, result); | 265 | tls_connection_result = mp_set_subcheck_state(tls_connection_result, result); |
266 | 266 | ||
267 | if (result == STATE_OK) { | 267 | if (result == STATE_OK) { |
268 | xasprintf(&tls_connection_result.output, "TLS connection succeded"); | 268 | xasprintf(&tls_connection_result.output, "TLS connection succeeded"); |
269 | 269 | ||
270 | if (config.check_cert) { | 270 | if (config.check_cert) { |
271 | result = np_net_ssl_check_cert(config.days_till_exp_warn, config.days_till_exp_crit); | 271 | result = np_net_ssl_check_cert(config.days_till_exp_warn, config.days_till_exp_crit); |