summaryrefslogtreecommitdiffstats
path: root/plugins/check_nt.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_nt.c')
-rw-r--r--plugins/check_nt.c9
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}