diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-11-09 10:26:09 (GMT) |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-11-09 10:26:09 (GMT) |
commit | f1dae440753b7d36346b0e0a516f69b3ff5d1546 (patch) | |
tree | cd43ad908713c6564703c21f9bb871e1d2bfb1de /plugins | |
parent | b370072a5a1e21876abf8cf95f4622c02565ae07 (diff) | |
download | monitoring-plugins-f1dae440753b7d36346b0e0a516f69b3ff5d1546.tar.gz |
Fix false formatting directive in printfrefs/pull/2046/head
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 1d27da2..8ea73ce 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -525,7 +525,7 @@ int check_http(void) { | |||
525 | // use the host_name later on to make SNI happy | 525 | // use the host_name later on to make SNI happy |
526 | if (use_ssl && host_name != NULL) { | 526 | if (use_ssl && host_name != NULL) { |
527 | if ((res = lookup_host(server_address, addrstr, DEFAULT_BUFFER_SIZE / 2)) != 0) { | 527 | if ((res = lookup_host(server_address, addrstr, DEFAULT_BUFFER_SIZE / 2)) != 0) { |
528 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %d"), server_address, res, | 528 | snprintf(msg, DEFAULT_BUFFER_SIZE, _("Unable to lookup IP address for '%s': getaddrinfo returned %d - %s"), server_address, res, |
529 | gai_strerror(res)); | 529 | gai_strerror(res)); |
530 | die(STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); | 530 | die(STATE_CRITICAL, "HTTP CRITICAL - %s\n", msg); |
531 | } | 531 | } |