From: Kurt Zeilenga Date: Sat, 10 Apr 1999 18:37:38 +0000 (+0000) Subject: Declare ldap_syslog/ldap_syslog_level locally. (This removes the X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~212 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5d9e32fa346e1268fdaad6a12a9f9a632d647472;p=openldap Declare ldap_syslog/ldap_syslog_level locally. (This removes the compilation error but likely doesn't resolve sysloging issues). --- diff --git a/clients/gopher/go500.c b/clients/gopher/go500.c index 5eca20ad11..54fff23d92 100644 --- a/clients/gopher/go500.c +++ b/clients/gopher/go500.c @@ -47,6 +47,8 @@ int debug; int dosyslog; +int ldap_syslog; +int ldap_syslog_level; int inetd; int dtblsize; diff --git a/clients/gopher/go500gw.c b/clients/gopher/go500gw.c index e03bd4b4f8..09c6df2a49 100644 --- a/clients/gopher/go500gw.c +++ b/clients/gopher/go500gw.c @@ -48,6 +48,8 @@ #include "ldapconfig.h" int debug; +int ldap_syslog; +int ldap_syslog_level; int dosyslog; int inetd; int dtblsize;