diff options
Diffstat (limited to 'plugins/check_mysql.c')
| -rw-r--r-- | plugins/check_mysql.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 3d7426d8..a9f0f600 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
| @@ -82,6 +82,9 @@ main (int argc, char **argv) | |||
| 82 | bindtextdomain (PACKAGE, LOCALEDIR); | 82 | bindtextdomain (PACKAGE, LOCALEDIR); |
| 83 | textdomain (PACKAGE); | 83 | textdomain (PACKAGE); |
| 84 | 84 | ||
| 85 | /* Parse extra opts if any */ | ||
| 86 | argv=np_extra_opts (&argc, argv, progname); | ||
| 87 | |||
| 85 | if (process_arguments (argc, argv) == ERROR) | 88 | if (process_arguments (argc, argv) == ERROR) |
| 86 | usage4 (_("Could not parse arguments")); | 89 | usage4 (_("Could not parse arguments")); |
| 87 | 90 | ||
| @@ -385,6 +388,7 @@ print_help (void) | |||
| 385 | print_usage (); | 388 | print_usage (); |
| 386 | 389 | ||
| 387 | printf (_(UT_HELP_VRSN)); | 390 | printf (_(UT_HELP_VRSN)); |
| 391 | printf (_(UT_EXTRA_OPTS)); | ||
| 388 | 392 | ||
| 389 | printf (_(UT_HOST_PORT), 'P', myport); | 393 | printf (_(UT_HOST_PORT), 'P', myport); |
| 390 | printf (" %s\n", "-s, --socket=STRING"); | 394 | printf (" %s\n", "-s, --socket=STRING"); |
| @@ -412,6 +416,12 @@ print_help (void) | |||
| 412 | printf (" %s\n", _("using the default unix socket. You can force TCP on localhost by using an")); | 416 | printf (" %s\n", _("using the default unix socket. You can force TCP on localhost by using an")); |
| 413 | printf (" %s\n", _("IP address or FQDN ('localhost' will use the socket as well).")); | 417 | printf (" %s\n", _("IP address or FQDN ('localhost' will use the socket as well).")); |
| 414 | 418 | ||
| 419 | #ifdef NP_EXTRA_OPTS | ||
| 420 | printf ("\n"); | ||
| 421 | printf ("%s\n", _("Notes:")); | ||
| 422 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
| 423 | #endif | ||
| 424 | |||
| 415 | printf (_(UT_SUPPORT)); | 425 | printf (_(UT_SUPPORT)); |
| 416 | } | 426 | } |
| 417 | 427 | ||
