diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-18 23:11:11 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-18 23:11:11 +0200 |
commit | 64b4d1fb665005c9442361094e02cfd25aa15f43 (patch) | |
tree | bb340cc7c445e6011471aa7049a898ef8ea28c7e /plugins/check_http.c | |
parent | d86005e66c9a0368e0c8e5747127253814670806 (diff) | |
download | monitoring-plugins-64b4d1fb665005c9442361094e02cfd25aa15f43.tar.gz |
Abbreviate function name
Make a very long function name at least a little bit shorter.
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r-- | plugins/check_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 46c0c135..7e3f82ae 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -879,7 +879,7 @@ check_http (void) elapsed_time_connect = (double)microsec_connect / 1.0e6; if (use_ssl == TRUE) { gettimeofday (&tv_temp, NULL); - result = np_net_ssl_init_with_hostname_version_and_certificate(sd, (use_sni ? host_name : NULL), ssl_version, client_cert, client_privkey); + result = np_net_ssl_init_with_hostname_version_and_cert(sd, (use_sni ? host_name : NULL), ssl_version, client_cert, client_privkey); if (result != STATE_OK) return result; microsec_ssl = deltime (tv_temp); |