summaryrefslogtreecommitdiffstats
path: root/plugins/check_game.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_game.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_game.c')
-rw-r--r--plugins/check_game.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/check_game.c b/plugins/check_game.c
index 0e4120d..4bc57c8 100644
--- a/plugins/check_game.c
+++ b/plugins/check_game.c
@@ -79,6 +79,9 @@ main (int argc, char **argv)
79 bindtextdomain (PACKAGE, LOCALEDIR); 79 bindtextdomain (PACKAGE, LOCALEDIR);
80 textdomain (PACKAGE); 80 textdomain (PACKAGE);
81 81
82 /* Parse extra opts if any */
83 argv=np_extra_opts (&argc, argv, progname);
84
82 if (process_arguments (argc, argv) == ERROR) 85 if (process_arguments (argc, argv) == ERROR)
83 usage_va(_("Could not parse arguments")); 86 usage_va(_("Could not parse arguments"));
84 87
@@ -302,6 +305,7 @@ print_help (void)
302 print_usage (); 305 print_usage ();
303 306
304 printf (_(UT_HELP_VRSN)); 307 printf (_(UT_HELP_VRSN));
308 printf (_(UT_EXTRA_OPTS));
305 309
306 printf (" %s\n", "-p"); 310 printf (" %s\n", "-p");
307 printf (" %s\n", _("Optional port of which to connect")); 311 printf (" %s\n", _("Optional port of which to connect"));
@@ -319,6 +323,10 @@ print_help (void)
319 printf (" %s\n", _("This plugin uses the 'qstat' command, the popular game server status query tool.")); 323 printf (" %s\n", _("This plugin uses the 'qstat' command, the popular game server status query tool."));
320 printf (" %s\n", _("If you don't have the package installed, you will need to download it from")); 324 printf (" %s\n", _("If you don't have the package installed, you will need to download it from"));
321 printf (" %s\n", _("http://www.activesw.com/people/steve/qstat.html before you can use this plugin.")); 325 printf (" %s\n", _("http://www.activesw.com/people/steve/qstat.html before you can use this plugin."));
326#ifdef NP_EXTRA_OPTS
327 printf ("\n");
328 printf (_(UT_EXTRA_OPTS_NOTES));
329#endif
322 330
323 printf (_(UT_SUPPORT)); 331 printf (_(UT_SUPPORT));
324} 332}