summaryrefslogtreecommitdiffstats
path: root/plugins/check_radius.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_radius.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_radius.c')
-rw-r--r--plugins/check_radius.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/check_radius.c b/plugins/check_radius.c
index 2afe3c8..7ce820a 100644
--- a/plugins/check_radius.c
+++ b/plugins/check_radius.c
@@ -149,6 +149,9 @@ main (int argc, char **argv)
149 bindtextdomain (PACKAGE, LOCALEDIR); 149 bindtextdomain (PACKAGE, LOCALEDIR);
150 textdomain (PACKAGE); 150 textdomain (PACKAGE);
151 151
152 /* Parse extra opts if any */
153 argv=np_extra_opts (&argc, argv, progname);
154
152 if (process_arguments (argc, argv) == ERROR) 155 if (process_arguments (argc, argv) == ERROR)
153 usage4 (_("Could not parse arguments")); 156 usage4 (_("Could not parse arguments"));
154 157
@@ -315,6 +318,7 @@ print_help (void)
315 print_usage (); 318 print_usage ();
316 319
317 printf (_(UT_HELP_VRSN)); 320 printf (_(UT_HELP_VRSN));
321 printf (_(UT_EXTRA_OPTS));
318 322
319 printf (_(UT_HOST_PORT), 'P', myport); 323 printf (_(UT_HOST_PORT), 'P', myport);
320 324
@@ -344,6 +348,12 @@ print_help (void)
344 printf ("%s\n", _("run the plugin at regular predictable intervals. Please be sure that")); 348 printf ("%s\n", _("run the plugin at regular predictable intervals. Please be sure that"));
345 printf ("%s\n", _("the password used does not allow access to sensitive system resources.")); 349 printf ("%s\n", _("the password used does not allow access to sensitive system resources."));
346 350
351#ifdef NP_EXTRA_OPTS
352 printf ("\n");
353 printf ("%s\n", _("Notes:"));
354 printf (_(UT_EXTRA_OPTS_NOTES));
355#endif
356
347 printf (_(UT_SUPPORT)); 357 printf (_(UT_SUPPORT));
348} 358}
349 359