diff options
Diffstat (limited to 'plugins/check_nwstat.c')
-rw-r--r-- | plugins/check_nwstat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index 3c8d5b9..b4fd3c7 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c | |||
@@ -170,6 +170,9 @@ main(int argc, char **argv) { | |||
170 | bindtextdomain (PACKAGE, LOCALEDIR); | 170 | bindtextdomain (PACKAGE, LOCALEDIR); |
171 | textdomain (PACKAGE); | 171 | textdomain (PACKAGE); |
172 | 172 | ||
173 | /* Parse extra opts if any */ | ||
174 | argv=np_extra_opts(&argc, argv, progname); | ||
175 | |||
173 | if (process_arguments(argc,argv) == ERROR) | 176 | if (process_arguments(argc,argv) == ERROR) |
174 | usage4 (_("Could not parse arguments")); | 177 | usage4 (_("Could not parse arguments")); |
175 | 178 | ||
@@ -1607,6 +1610,7 @@ void print_help(void) | |||
1607 | print_usage(); | 1610 | print_usage(); |
1608 | 1611 | ||
1609 | printf (_(UT_HELP_VRSN)); | 1612 | printf (_(UT_HELP_VRSN)); |
1613 | printf (_(UT_EXTRA_OPTS)); | ||
1610 | 1614 | ||
1611 | printf (_(UT_HOST_PORT), 'p', myport); | 1615 | printf (_(UT_HOST_PORT), 'p', myport); |
1612 | 1616 | ||
@@ -1674,6 +1678,9 @@ void print_help(void) | |||
1674 | printf (" %s\n", _("- Values for critical thresholds should be lower than warning thresholds")); | 1678 | printf (" %s\n", _("- Values for critical thresholds should be lower than warning thresholds")); |
1675 | printf (" %s\n", _(" when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, ")); | 1679 | printf (" %s\n", _(" when the following variables are checked: VPF, VKF, LTCH, CBUFF, DCB, ")); |
1676 | printf (" %s\n", _(" TCB, LRUS and LRUM.")); | 1680 | printf (" %s\n", _(" TCB, LRUS and LRUM.")); |
1681 | #ifdef NP_EXTRA_OPTS | ||
1682 | printf (" -%s", _(UT_EXTRA_OPTS_NOTES)); | ||
1683 | #endif | ||
1677 | 1684 | ||
1678 | printf (_(UT_SUPPORT)); | 1685 | printf (_(UT_SUPPORT)); |
1679 | } | 1686 | } |