From: Karl DeBisschop Date: Thu, 16 Jan 2003 06:42:24 +0000 (+0000) Subject: semicolon needed where progname define was replaced X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3a04e399fd7aeeeb8c537fd83c52e32aa8670b4d;p=nagiosplug.git 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 --- 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 @@ * 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 4c8662b..613ff26 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"