mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-11 23:03:21 -05:00
honor attributes request
This commit is contained in:
parent
1fa756cd24
commit
1f400adca7
2 changed files with 7 additions and 4 deletions
|
|
@ -152,15 +152,15 @@ backsql_operational(
|
|||
break;
|
||||
|
||||
default:
|
||||
Debug(LDAP_DEBUG_TRACE,
|
||||
"backsql_operational(): "
|
||||
"has_children failed( %d)\n",
|
||||
rc, 0, 0 );
|
||||
Debug( LDAP_DEBUG_TRACE, "backsql_operational(): "
|
||||
"has_children failed( %d)\n", rc, 0, 0 );
|
||||
rc = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "<==backsql_operational()\n", 0, 0, 0);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1268,8 +1268,11 @@ backsql_search( Operation *op, SlapReply *rs )
|
|||
sres = 0;
|
||||
} else {
|
||||
#endif
|
||||
rs->sr_attrs = op->oq_search.rs_attrs;
|
||||
rs->sr_entry = entry;
|
||||
sres = send_search_entry( op, rs );
|
||||
rs->sr_entry = NULL;
|
||||
rs->sr_attrs = NULL;
|
||||
#if 0
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue