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/check_nt.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/check_nt.c')
-rw-r--r-- | plugins/check_nt.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/check_nt.c b/plugins/check_nt.c index 681b842..ef1b530 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c | |||
@@ -122,6 +122,9 @@ int main(int argc, char **argv){ | |||
122 | bindtextdomain (PACKAGE, LOCALEDIR); | 122 | bindtextdomain (PACKAGE, LOCALEDIR); |
123 | textdomain (PACKAGE); | 123 | textdomain (PACKAGE); |
124 | 124 | ||
125 | /* Parse extra opts if any */ | ||
126 | argv=np_extra_opts (&argc, argv, progname); | ||
127 | |||
125 | if(process_arguments(argc,argv) == ERROR) | 128 | if(process_arguments(argc,argv) == ERROR) |
126 | usage4 (_("Could not parse arguments")); | 129 | usage4 (_("Could not parse arguments")); |
127 | 130 | ||
@@ -644,8 +647,9 @@ void print_help(void) | |||
644 | print_usage(); | 647 | print_usage(); |
645 | 648 | ||
646 | printf (_(UT_HELP_VRSN)); | 649 | printf (_(UT_HELP_VRSN)); |
650 | printf (_(UT_EXTRA_OPTS)); | ||
647 | 651 | ||
648 | printf ("%s\n", _("Options:")); | 652 | printf ("%s\n", _("Options:")); |
649 | printf (" %s\n", "-H, --hostname=HOST"); | 653 | printf (" %s\n", "-H, --hostname=HOST"); |
650 | printf (" %s\n", _("Name of the host to check")); | 654 | printf (" %s\n", _("Name of the host to check")); |
651 | printf (" %s\n", "-p, --port=INTEGER"); | 655 | printf (" %s\n", "-p, --port=INTEGER"); |
@@ -729,6 +733,9 @@ void print_help(void) | |||
729 | printf (" %s\n", _("output when this happens contains \"Cannot map xxxxx to protocol number\".")); | 733 | printf (" %s\n", _("output when this happens contains \"Cannot map xxxxx to protocol number\".")); |
730 | printf (" %s\n", _("One fix for this is to change the port to something else on check_nt ")); | 734 | printf (" %s\n", _("One fix for this is to change the port to something else on check_nt ")); |
731 | printf (" %s\n", _("and on the client service it\'s connecting to.")); | 735 | printf (" %s\n", _("and on the client service it\'s connecting to.")); |
736 | #ifdef NP_EXTRA_OPTS | ||
737 | printf (" -%s", _(UT_EXTRA_OPTS_NOTES)); | ||
738 | #endif | ||
732 | 739 | ||
733 | printf (_(UT_SUPPORT)); | 740 | printf (_(UT_SUPPORT)); |
734 | } | 741 | } |