summaryrefslogtreecommitdiffstats
path: root/plugins/check_ldap.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_ldap.c')
-rw-r--r--plugins/check_ldap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c
index b12a0ed..92d41a8 100644
--- a/plugins/check_ldap.c
+++ b/plugins/check_ldap.c
@@ -20,7 +20,7 @@
20 20
21const char *progname = "check_ldap"; 21const char *progname = "check_ldap";
22const char *revision = "$Revision$"; 22const char *revision = "$Revision$";
23const char *copyright = "2000-2003"; 23const char *copyright = "2000-2004";
24const char *email = "nagiosplug-devel@lists.sourceforge.net"; 24const char *email = "nagiosplug-devel@lists.sourceforge.net";
25 25
26#include "common.h" 26#include "common.h"
@@ -64,7 +64,9 @@ main (int argc, char *argv[])
64 LDAP *ld; 64 LDAP *ld;
65 LDAPMessage *result; 65 LDAPMessage *result;
66 66
67 int status; 67 /* should be int result = STATE_UNKNOWN; */
68
69 int status = STATE_UNKNOW;
68 long microsec; 70 long microsec;
69 double elapsed_time; 71 double elapsed_time;
70 72