diff options
| author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-06-08 09:23:38 +0200 |
|---|---|---|
| committer | Sven Nierlein <sven@nierlein.de> | 2018-10-22 16:30:31 +0200 |
| commit | 36ea82ff1252059795c79d5a52ad9550048e7080 (patch) | |
| tree | 320e90f0e89026b808d20865337655f467bbb168 /plugins | |
| parent | 577edf4725dfc3e6474042a0e0d6585b744b2b8c (diff) | |
| download | monitoring-plugins-36ea82ff1252059795c79d5a52ad9550048e7080.tar.gz | |
check_curl: changed name of plugin in user-agent and added curl_version() to it
Diffstat (limited to 'plugins')
| -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 4fe89378..43d5961f 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) |
