diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-12-05 20:13:31 +0100 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-12-05 20:13:31 +0100 |
commit | c91ff7539af65f95c2bcef69e5643bd99773c80f (patch) | |
tree | ac57e29d78d33017cfdcc2897798859f3a620630 /plugins/check_http.c | |
parent | 4463a851127d984ec372d64242d9866048eb5e89 (diff) | |
download | monitoring-plugins-c91ff7539af65f95c2bcef69e5643bd99773c80f.tar.gz |
check_http: Don't let "-N" expect an argument
Fix the problem that check_http's "-N" option expects an argument
although it shouldn't. The corresponding long option ("--no-body")
wasn't affected.
This error was introduced in ee3c4014d511e105489b081390636cacd4c53e3f.
Thanks to Kerry Hughes for reporting it on the devel@ list.
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 0ffb0c18..1595a59e 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -257,7 +257,7 @@ process_arguments (int argc, char **argv) } while (1) { - c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:N:E", longopts, &option); + c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); if (c == -1 || c == EOF) break; |