From: Howard Chu Date: Tue, 1 Mar 2005 23:17:54 +0000 (+0000) Subject: Drop "access " from acl_unparse X-Git-Tag: OPENLDAP_REL_ENG_2_3_BP~109 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a2a9ae725f62fe939b29252e0b707aa4378fac93;p=openldap Drop "access " from acl_unparse --- diff --git a/servers/slapd/aclparse.c b/servers/slapd/aclparse.c index 1a77a9527f..064267970b 100644 --- a/servers/slapd/aclparse.c +++ b/servers/slapd/aclparse.c @@ -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 */