[Nagiosplug-checkins] nagiosplug/plugins check_http.c,1.100,1.101
Ton Voon
tonvoon at users.sourceforge.net
Tue Mar 6 23:45:59 CET 2007
Update of /cvsroot/nagiosplug/nagiosplug/plugins
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv10715/plugins
Modified Files:
check_http.c
Log Message:
Fix option handling (Nobuhiro Ban - 1657280)
Index: check_http.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_http.c,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -d -r1.100 -r1.101
--- check_http.c 6 Feb 2007 21:03:20 -0000 1.100
+++ check_http.c 6 Mar 2007 22:45:57 -0000 1.101
@@ -175,15 +175,16 @@
int option = 0;
static struct option longopts[] = {
STD_LONG_OPTS,
- {"file",required_argument,0,'F'},
{"link", no_argument, 0, 'L'},
{"nohtml", no_argument, 0, 'n'},
{"ssl", no_argument, 0, 'S'},
- {"verbose", no_argument, 0, 'v'},
{"post", required_argument, 0, 'P'},
{"IP-address", required_argument, 0, 'I'},
{"url", required_argument, 0, 'u'},
+ {"port", required_argument, 0, 'p'},
+ {"authorization", required_argument, 0, 'a'},
{"string", required_argument, 0, 's'},
+ {"expect", required_argument, 0, 'e'},
{"regex", required_argument, 0, 'r'},
{"ereg", required_argument, 0, 'r'},
{"eregi", required_argument, 0, 'R'},
@@ -1295,7 +1296,7 @@
printf (" %s\n", _("String to be sent in http header as \"User Agent\""));
printf (" %s\n", "-k, --header=STRING");
printf (" %s\n", _(" Any other tags to be sent in http header. Use multiple times for additional headers"));
- printf (" %s\n", "-L, --link=URL");
+ printf (" %s\n", "-L, --link");
printf (" %s\n", _("Wrap output in HTML link (obsoleted by urlize)"));
printf (" %s\n", "-f, --onredirect=<ok|warning|critical|follow>");
printf (" %s\n", _("How to handle redirected pages"));
More information about the Commits
mailing list