]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-bdb/dn2entry.c
Set lock detector to DEFAULT, not NORUN.
[openldap] / servers / slapd / back-bdb / dn2entry.c
index b95ae4ea6a9bf80b19d636fc213b4d5b48fe6f97..767c1571dbe85e22ddceedd7b2f75127d39f8742 100644 (file)
@@ -1,7 +1,7 @@
 /* dn2entry.c - routines to deal with the dn2id / id2entry glue */
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 
@@ -27,8 +27,7 @@ bdb_dn2entry(
        int flags )
 {
        int rc;
-       ID              id;
-       char    *matchedDN = NULL;
+       ID              id, id2 = 0;
 
        Debug(LDAP_DEBUG_TRACE, "bdb_dn2entry(\"%s\")\n",
                dn->bv_val, 0, 0 );
@@ -37,7 +36,7 @@ bdb_dn2entry(
 
        if( matched != NULL ) {
                *matched = NULL;
-               rc = bdb_dn2id_matched( be, tid, dn, &id, &matchedDN );
+               rc = bdb_dn2id_matched( be, tid, dn, &id, &id2 );
        } else {
                rc = bdb_dn2id( be, tid, dn, &id );
        }
@@ -46,10 +45,10 @@ bdb_dn2entry(
                return rc;
        }
 
-       if( matchedDN == NULL ) {
+       if( id2 == 0 ) {
                rc = bdb_id2entry( be, tid, id, e );
        } else {
-               rc = bdb_id2entry( be, tid, id, matched );
+               rc = bdb_id2entry( be, tid, id2, matched );
        }
 
        return rc;