]> git.sur5r.net Git - openldap/commitdiff
Drop "access " from acl_unparse
authorHoward Chu <hyc@openldap.org>
Tue, 1 Mar 2005 23:17:54 +0000 (23:17 +0000)
committerHoward Chu <hyc@openldap.org>
Tue, 1 Mar 2005 23:17:54 +0000 (23:17 +0000)
servers/slapd/aclparse.c

index 1a77a9527f18438a79206745b29fafce957e216d..064267970b66caffaf95d96479398d2e29cdd3f2 100644 (file)
@@ -2294,7 +2294,7 @@ acl_unparse( AccessControl *a, struct berval *bv )
 
        ptr = bv->bv_val;
 
-       ptr = lutil_strcopy( ptr, "access to" );
+       ptr = lutil_strcopy( ptr, "to" );
        if ( !BER_BVISNULL( &a->acl_dn_pat ) ) {
                to++;
                ptr = lutil_strcopy( ptr, " dn." );
@@ -2369,7 +2369,7 @@ print_acl( Backend *be, AccessControl *a )
        struct berval bv;
 
        acl_unparse( a, &bv );
-       fprintf( stderr, "%s ACL: %s\n",
+       fprintf( stderr, "%s ACL: access %s\n",
                be == NULL ? "Global" : "Backend", bv.bv_val );
 }
 #endif /* LDAP_DEBUG */