mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-10 14:23:34 -05:00
minor cleanup
This commit is contained in:
parent
d262aae706
commit
0f30fb0d8f
3 changed files with 5 additions and 5 deletions
|
|
@ -39,7 +39,7 @@ ldap_back_group(
|
|||
|
||||
LDAPMessage *result;
|
||||
char *gattr[2];
|
||||
char *filter;
|
||||
char *filter = NULL;
|
||||
LDAP *ld;
|
||||
char *mop_ndn, *mgr_ndn;
|
||||
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ ldap_back_modify(
|
|||
{
|
||||
struct ldapinfo *li = (struct ldapinfo *) be->be_private;
|
||||
struct ldapconn *lc;
|
||||
LDAPMod **modv;
|
||||
LDAPMod **modv = NULL;
|
||||
LDAPMod *mods;
|
||||
Modifications *ml;
|
||||
int i;
|
||||
|
|
|
|||
|
|
@ -56,11 +56,11 @@ ldap_back_conn_destroy(
|
|||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
||||
"ldap_back_conn_destroy: fetching conn %d\n",
|
||||
"ldap_back_conn_destroy: fetching conn %ld\n",
|
||||
conn->c_connid ));
|
||||
#else /* !NEW_LOGGING */
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"=>ldap_back_conn_destroy: fetching conn %d\n",
|
||||
"=>ldap_back_conn_destroy: fetching conn %ld\n",
|
||||
conn->c_connid, 0, 0 );
|
||||
#endif /* !NEW_LOGGING */
|
||||
|
||||
|
|
@ -72,7 +72,7 @@ ldap_back_conn_destroy(
|
|||
|
||||
if (lc) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"=>ldap_back_conn_destroy: destroying conn %d\n",
|
||||
"=>ldap_back_conn_destroy: destroying conn %ld\n",
|
||||
lc->conn->c_connid, 0, 0 );
|
||||
|
||||
#ifdef ENABLE_REWRITE
|
||||
|
|
|
|||
Loading…
Reference in a new issue