diff options
Diffstat (limited to 'plugins/check_curl.c')
-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 | } |