]> git.sur5r.net Git - openldap/commitdiff
Use LDAP_ALIAS_DEREF_PROBLEM for all problem dereferencing aliases.
authorKurt Zeilenga <kurt@openldap.org>
Thu, 4 Feb 1999 17:23:34 +0000 (17:23 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 4 Feb 1999 17:23:34 +0000 (17:23 +0000)
LDAP_ALIAS_PROBLEM is now only used if the alias itself is mangled.

servers/slapd/back-ldbm/alias.c

index d328cc8d17536b25354c9fa4e735f798ef0e83e2..a6e780143eb2bfc9f08c07f731e690699dfd430d 100644 (file)
@@ -75,7 +75,7 @@ Entry *derefAlias_r ( Backend     *be,
        Debug( LDAP_DEBUG_TRACE, 
               "<= %s alias is same as current %s\n", 
               oldDN, newDN, 0 );
-       send_ldap_result( conn, op, LDAP_ALIAS_PROBLEM, "",
+       send_ldap_result( conn, op, LDAP_ALIAS_DEREF_PROBLEM, "",
                          "Circular alias" );
        free (newDN);
        free (oldDN);
@@ -87,7 +87,7 @@ Entry *derefAlias_r ( Backend     *be,
        Debug( LDAP_DEBUG_TRACE, 
               "<= %s alias is same as original %s\n", 
               oldDN, origDN->e_ndn, 0 );
-       send_ldap_result( conn, op, LDAP_ALIAS_PROBLEM, "",
+       send_ldap_result( conn, op, LDAP_ALIAS_DEREF_PROBLEM, "",
                          "Circular alias" );
        free (newDN);
        free (oldDN);