diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
commit | 44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch) | |
tree | 26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins-root/check_dhcp.c | |
parent | 4d157889e3018119e07bdcc7f48afde1422f7396 (diff) | |
download | monitoring-plugins-44f8455b2cf248c6f50c35bfc3510d2946084c5b.tar.gz |
Added support for --extra-opts in all C plugins (disabled by default, see configure --help)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1991 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-root/check_dhcp.c')
-rw-r--r-- | plugins-root/check_dhcp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index 9b62b3e..241f13e 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
@@ -268,6 +268,9 @@ int main(int argc, char **argv){ | |||
268 | bindtextdomain (PACKAGE, LOCALEDIR); | 268 | bindtextdomain (PACKAGE, LOCALEDIR); |
269 | textdomain (PACKAGE); | 269 | textdomain (PACKAGE); |
270 | 270 | ||
271 | /* Parse extra opts if any */ | ||
272 | argv=np_extra_opts(&argc, argv, progname); | ||
273 | |||
271 | if(process_arguments(argc,argv)!=OK){ | 274 | if(process_arguments(argc,argv)!=OK){ |
272 | usage4 (_("Could not parse arguments")); | 275 | usage4 (_("Could not parse arguments")); |
273 | } | 276 | } |
@@ -1395,6 +1398,7 @@ void print_help(void){ | |||
1395 | print_usage(); | 1398 | print_usage(); |
1396 | 1399 | ||
1397 | printf (_(UT_HELP_VRSN)); | 1400 | printf (_(UT_HELP_VRSN)); |
1401 | printf (_(UT_EXTRA_OPTS)); | ||
1398 | 1402 | ||
1399 | printf (_(UT_VERBOSE)); | 1403 | printf (_(UT_VERBOSE)); |
1400 | 1404 | ||
@@ -1411,6 +1415,12 @@ void print_help(void){ | |||
1411 | printf (" %s\n", "-u, --unicast"); | 1415 | printf (" %s\n", "-u, --unicast"); |
1412 | printf (" %s\n", _("Unicast testing: mimic a DHCP relay, requires -s")); | 1416 | printf (" %s\n", _("Unicast testing: mimic a DHCP relay, requires -s")); |
1413 | 1417 | ||
1418 | #ifdef NP_EXTRA_OPTS | ||
1419 | printf ("\n"); | ||
1420 | printf ("%s\n", _("Notes:")); | ||
1421 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
1422 | #endif | ||
1423 | |||
1414 | printf (_(UT_SUPPORT)); | 1424 | printf (_(UT_SUPPORT)); |
1415 | return; | 1425 | return; |
1416 | } | 1426 | } |