add new isroot_dn helper

This commit is contained in:
Pierangelo Masarati 2004-04-05 17:30:30 +00:00
parent f3ee96399e
commit b89c894eff

View File

@ -747,13 +747,19 @@ be_root_dn( Backend *be )
return &be->be_rootdn; return &be->be_rootdn;
} }
int
be_isroot_dn( Operation *op )
{
return be_isroot( op->o_bd, &op->o_ndn );
}
int int
be_isroot_pw( Operation *op ) be_isroot_pw( Operation *op )
{ {
int result; int result;
char *errmsg; char *errmsg;
if ( ! be_isroot( op->o_bd, &op->o_req_ndn ) ) { if ( ! be_isroot_dn( op ) ) {
return 0; return 0;
} }