diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:28:23 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:28:23 (GMT) |
commit | ec1ff298a54e901218a56d5c0831d0a6dec48e92 (patch) | |
tree | d5dbe0df9fe5aff4568289fea937a39d285b79a0 /plugins | |
parent | e200689550a435bf6170d2908188fd5bfc6a68fd (diff) | |
download | monitoring-plugins-ec1ff298a54e901218a56d5c0831d0a6dec48e92.tar.gz |
progname and print_usage need to be defined
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@247 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_game.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/check_game.c b/plugins/check_game.c index 19f10b1..8cf1bf4 100644 --- a/plugins/check_game.c +++ b/plugins/check_game.c | |||
@@ -69,6 +69,7 @@ | |||
69 | #include "utils.h" | 69 | #include "utils.h" |
70 | 70 | ||
71 | int process_arguments (int, char **); | 71 | int process_arguments (int, char **); |
72 | const char *progname = "check_game"; | ||
72 | 73 | ||
73 | #define QSTAT_DATA_DELIMITER "," | 74 | #define QSTAT_DATA_DELIMITER "," |
74 | 75 | ||
@@ -291,3 +292,8 @@ process_arguments (int argc, char **argv) | |||
291 | 292 | ||
292 | return OK; | 293 | return OK; |
293 | } | 294 | } |
295 | |||
296 | void print_usage (void) | ||
297 | { | ||
298 | return STATE_OK; | ||
299 | } | ||