aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_pgsql.c
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-02-08 06:00:51 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-02-08 06:00:51 +0000
commit00f86a8f6bfe204e6aa9eb2290ed9f3a8945cebe (patch)
treea6f87661d41b808d934228a81470b1b027d0fb85 /plugins/check_pgsql.c
parent20cc276166823ca7b938e4b9aacf7fa2ffd25b73 (diff)
downloadmonitoring-plugins-00f86a8f6bfe204e6aa9eb2290ed9f3a8945cebe.tar.gz
use enum instead of define
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@295 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r--plugins/check_pgsql.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index 613ff261..2d80fad1 100644
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
@@ -44,7 +44,7 @@ const char *progname = "check_pgsql";
-H, --hostname=STRING\n\
Name or numeric IP address of machine running backend\n\
-P, --port=INTEGER\n\
- Port running backend (default: %s)\n\
+ Port running backend (default: %d)\n\
-d, --database=STRING\n\
Database to check (default: %s)\n\
-l, --logname = STRING\n\
@@ -70,10 +70,12 @@ a password, but no effort is made to obsure or encrypt the password.\n"
#define DEFAULT_DB "template1"
#define DEFAULT_HOST "127.0.0.1"
-#define DEFAULT_PORT "5432"
-#define DEFAULT_WARN 2
-#define DEFAULT_CRIT 8
-#define DEFAULT_TIMEOUT 30
+enum {
+ DEFAULT_PORT = 5432,
+ DEFAULT_WARN = 2,
+ DEFAULT_CRIT = 8,
+ DEFAULT_TIMEOUT = 30
+};
#include "config.h"
#include "common.h"
@@ -90,7 +92,7 @@ int is_pg_logname (char *);
char *pghost = NULL; /* host name of the backend server */
char *pgport = NULL; /* port of the backend server */
-char default_port[4] = DEFAULT_PORT;
+int default_port = DEFAULT_PORT;
char *pgoptions = NULL;
char *pgtty = NULL;
char dbName[NAMEDATALEN] = DEFAULT_DB;