diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:42:24 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-16 06:42:24 +0000 |
commit | 3a04e399fd7aeeeb8c537fd83c52e32aa8670b4d (patch) | |
tree | 6038c5acf7229f7b91924298612d12e11ca148b4 | |
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
-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 df2ed002..5c7bcb0d 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c @@ -14,7 +14,7 @@ * This plugin is for testing a mysql server. ******************************************************************************/ -const char *progname = "check_mysql" +const char *progname = "check_mysql"; #define REVISION "$Revision$" #define COPYRIGHT "1999-2002" diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 4c8662ba..613ff261 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -23,7 +23,7 @@ * *****************************************************************************/ -const char *progname = "check_pgsql" +const char *progname = "check_pgsql"; #define REVISION "$Revision$" #define COPYRIGHT "1999-2001" #define AUTHOR "Karl DeBisschop" |