summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--plugins/check_http.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 0261e49..6c01776 100644
--- a/NEWS
+++ b/NEWS
@@ -45,6 +45,7 @@ This file documents the major additions and syntax changes between releases.
45 45
46 WARNINGS 46 WARNINGS
47 check_http behaviour of -k/--header changed since it does not seperate multiple headers by semicolons anymore. Use multiple -k switches instead. 47 check_http behaviour of -k/--header changed since it does not seperate multiple headers by semicolons anymore. Use multiple -k switches instead.
48 check_http's --proxy_authorization option is now called --proxy-authorization (it was always documented this way)
48 49
491.4.16 27th June 2012 501.4.16 27th June 2012
50 ENHANCEMENTS 51 ENHANCEMENTS
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 1576601..c44bb3a 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -215,7 +215,7 @@ process_arguments (int argc, char **argv)
215 {"url", required_argument, 0, 'u'}, 215 {"url", required_argument, 0, 'u'},
216 {"port", required_argument, 0, 'p'}, 216 {"port", required_argument, 0, 'p'},
217 {"authorization", required_argument, 0, 'a'}, 217 {"authorization", required_argument, 0, 'a'},
218 {"proxy_authorization", required_argument, 0, 'b'}, 218 {"proxy-authorization", required_argument, 0, 'b'},
219 {"header-string", required_argument, 0, 'd'}, 219 {"header-string", required_argument, 0, 'd'},
220 {"string", required_argument, 0, 's'}, 220 {"string", required_argument, 0, 's'},
221 {"expect", required_argument, 0, 'e'}, 221 {"expect", required_argument, 0, 'e'},