diff options
Diffstat (limited to 'plugins-root')
-rw-r--r-- | plugins-root/check_dhcp.c | 10 | ||||
-rw-r--r-- | plugins-root/check_icmp.c | 9 |
2 files changed, 18 insertions, 1 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 | } |
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index a059f26..f3e5f0d 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
@@ -447,6 +447,9 @@ main(int argc, char **argv) | |||
447 | packets = 5; | 447 | packets = 5; |
448 | } | 448 | } |
449 | 449 | ||
450 | /* Parse extra opts if any */ | ||
451 | argv=np_extra_opts(&argc, argv, progname); | ||
452 | |||
450 | /* parse the arguments */ | 453 | /* parse the arguments */ |
451 | for(i = 1; i < argc; i++) { | 454 | for(i = 1; i < argc; i++) { |
452 | while((arg = getopt(argc, argv, "vhVw:c:n:p:t:H:s:i:b:I:l:m:")) != EOF) { | 455 | while((arg = getopt(argc, argv, "vhVw:c:n:p:t:H:s:i:b:I:l:m:")) != EOF) { |
@@ -1262,6 +1265,7 @@ print_help(void) | |||
1262 | print_usage (); | 1265 | print_usage (); |
1263 | 1266 | ||
1264 | printf (_(UT_HELP_VRSN)); | 1267 | printf (_(UT_HELP_VRSN)); |
1268 | printf (_(UT_EXTRA_OPTS)); | ||
1265 | 1269 | ||
1266 | printf (" %s\n", "-H"); | 1270 | printf (" %s\n", "-H"); |
1267 | printf (" %s\n", _("specify a target")); | 1271 | printf (" %s\n", _("specify a target")); |
@@ -1310,10 +1314,13 @@ print_help(void) | |||
1310 | printf ("%s\n\n", _("NOTE: Some systems decrease TTL when forming ICMP_ECHOREPLY, others do not."));*/ | 1314 | printf ("%s\n\n", _("NOTE: Some systems decrease TTL when forming ICMP_ECHOREPLY, others do not."));*/ |
1311 | printf ("\n"); | 1315 | printf ("\n"); |
1312 | printf (" %s\n", _("The -v switch can be specified several times for increased verbosity.")); | 1316 | printf (" %s\n", _("The -v switch can be specified several times for increased verbosity.")); |
1313 | |||
1314 | /* printf ("%s\n", _("Long options are currently unsupported.")); | 1317 | /* printf ("%s\n", _("Long options are currently unsupported.")); |
1315 | printf ("%s\n", _("Options marked with * require an argument")); | 1318 | printf ("%s\n", _("Options marked with * require an argument")); |
1316 | */ | 1319 | */ |
1320 | #ifdef NP_EXTRA_OPTS | ||
1321 | printf ("\n"); | ||
1322 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
1323 | #endif | ||
1317 | 1324 | ||
1318 | printf (_(UT_SUPPORT)); | 1325 | printf (_(UT_SUPPORT)); |
1319 | } | 1326 | } |