summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtgtraf.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
commit44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch)
tree26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins/check_mrtgtraf.c
parent4d157889e3018119e07bdcc7f48afde1422f7396 (diff)
downloadmonitoring-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_mrtgtraf.c')
-rw-r--r--plugins/check_mrtgtraf.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c
index 5ba5cdc..b971616 100644
--- a/plugins/check_mrtgtraf.c
+++ b/plugins/check_mrtgtraf.c
@@ -80,6 +80,9 @@ main (int argc, char **argv)
80 bindtextdomain (PACKAGE, LOCALEDIR); 80 bindtextdomain (PACKAGE, LOCALEDIR);
81 textdomain (PACKAGE); 81 textdomain (PACKAGE);
82 82
83 /* Parse extra opts if any */
84 argv=np_extra_opts (&argc, argv, progname);
85
83 if (process_arguments (argc, argv) == ERROR) 86 if (process_arguments (argc, argv) == ERROR)
84 usage4 (_("Could not parse arguments")); 87 usage4 (_("Could not parse arguments"));
85 88
@@ -347,6 +350,7 @@ print_help (void)
347 print_usage (); 350 print_usage ();
348 351
349 printf (_(UT_HELP_VRSN)); 352 printf (_(UT_HELP_VRSN));
353 printf (_(UT_EXTRA_OPTS));
350 354
351 printf (" %s\n", "-F, --filename=STRING"); 355 printf (" %s\n", "-F, --filename=STRING");
352 printf (" %s\n", _("File to read log from")); 356 printf (" %s\n", _("File to read log from"));
@@ -368,6 +372,9 @@ print_help (void)
368 printf (" %s\n", _("- The calculated i/o rates are a little off from what MRTG actually")); 372 printf (" %s\n", _("- The calculated i/o rates are a little off from what MRTG actually"));
369 printf (" %s\n", _(" reports. I'm not sure why this is right now, but will look into it")); 373 printf (" %s\n", _(" reports. I'm not sure why this is right now, but will look into it"));
370 printf (" %s\n", _(" for future enhancements of this plugin.")); 374 printf (" %s\n", _(" for future enhancements of this plugin."));
375#ifdef NP_EXTRA_OPTS
376 printf (" -%s", _(UT_EXTRA_OPTS_NOTES));
377#endif
371 378
372 printf (_(UT_SUPPORT)); 379 printf (_(UT_SUPPORT));
373} 380}