diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:42:24 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:42:24 (GMT) |
commit | 3a04e399fd7aeeeb8c537fd83c52e32aa8670b4d (patch) | |
tree | 6038c5acf7229f7b91924298612d12e11ca148b4 /plugins | |
parent | 68544fbb90b4a702de4a939d5c62055e453582c6 (diff) | |
download | monitoring-plugins-3a04e399fd7aeeeb8c537fd83c52e32aa8670b4d.tar.gz |
semicolon needed where progname define was replaced
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@249 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_mysql.c | 2 | ||||
-rw-r--r-- | plugins/check_pgsql.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index df2ed00..5c7bcb0 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * This plugin is for testing a mysql server. | 14 | * This plugin is for testing a mysql server. |
15 | ******************************************************************************/ | 15 | ******************************************************************************/ |
16 | 16 | ||
17 | const char *progname = "check_mysql" | 17 | const char *progname = "check_mysql"; |
18 | #define REVISION "$Revision$" | 18 | #define REVISION "$Revision$" |
19 | #define COPYRIGHT "1999-2002" | 19 | #define COPYRIGHT "1999-2002" |
20 | 20 | ||
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 4c8662b..613ff26 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * | 23 | * |
24 | *****************************************************************************/ | 24 | *****************************************************************************/ |
25 | 25 | ||
26 | const char *progname = "check_pgsql" | 26 | const char *progname = "check_pgsql"; |
27 | #define REVISION "$Revision$" | 27 | #define REVISION "$Revision$" |
28 | #define COPYRIGHT "1999-2001" | 28 | #define COPYRIGHT "1999-2001" |
29 | #define AUTHOR "Karl DeBisschop" | 29 | #define AUTHOR "Karl DeBisschop" |