diff options
Diffstat (limited to 'plugins/check_curl.c')
-rw-r--r-- | plugins/check_curl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 4fe8937..43d5961 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -32,7 +32,7 @@ | |||
32 | * | 32 | * |
33 | * | 33 | * |
34 | *****************************************************************************/ | 34 | *****************************************************************************/ |
35 | const char *progname = "check_curl"; | 35 | const char *progname = "check_http"; |
36 | 36 | ||
37 | const char *copyright = "2006-2018"; | 37 | const char *copyright = "2006-2018"; |
38 | const char *email = "devel@monitoring-plugins.org"; | 38 | const char *email = "devel@monitoring-plugins.org"; |
@@ -247,8 +247,8 @@ main (int argc, char **argv) | |||
247 | argv = np_extra_opts (&argc, argv, progname); | 247 | argv = np_extra_opts (&argc, argv, progname); |
248 | 248 | ||
249 | /* set defaults */ | 249 | /* set defaults */ |
250 | snprintf( user_agent, DEFAULT_BUFFER_SIZE, "%s/v%s (monitoring-plugins %s)", | 250 | snprintf( user_agent, DEFAULT_BUFFER_SIZE, "%s/v%s (monitoring-plugins %s, %s)", |
251 | progname, NP_VERSION, VERSION); | 251 | progname, NP_VERSION, VERSION, curl_version()); |
252 | 252 | ||
253 | /* parse arguments */ | 253 | /* parse arguments */ |
254 | if (process_arguments (argc, argv) == ERROR) | 254 | if (process_arguments (argc, argv) == ERROR) |