Skip to content
Snippets Groups Projects
Commit 0f30fb0d authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

minor cleanup

parent d262aae7
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment