put conditions on i, buf2 and c so we don't get unreferenced variable warnings

This commit is contained in:
Gary Williams 1999-04-14 15:13:10 +00:00
parent af423fd393
commit 8656d441ff

View File

@ -27,13 +27,17 @@ void
monitor_info( Connection *conn, Operation *op )
{
Entry *e;
char buf[BUFSIZ], buf2[22];
char buf[BUFSIZ];
struct berval val;
struct berval *vals[2];
int i, nconns, nwritewaiters, nreadwaiters;
int nconns, nwritewaiters, nreadwaiters;
struct tm *ltm;
char *p;
#ifdef LDAP_COUNTERS
int i;
char buf2[22]
Connection *c;
#endif
time_t currenttime;
vals[0] = &val;