mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Fix typo in previous commit: spurious space in UUID syntax OID.
Also make remove_query_and_data() return void (it returned nothing) and remove an unused variable.
This commit is contained in:
parent
51152d83a3
commit
6a02dd9d92
@ -1498,7 +1498,7 @@ struct search_info {
|
||||
Entry *head, *tail;
|
||||
};
|
||||
|
||||
static int
|
||||
static void
|
||||
remove_query_and_data(
|
||||
Operation *op,
|
||||
SlapReply *rs,
|
||||
@ -1671,7 +1671,6 @@ cache_entries(
|
||||
struct search_info *si = op->o_callback->sc_private;
|
||||
slap_overinst *on = si->on;
|
||||
cache_manager *cm = on->on_bi.bi_private;
|
||||
query_manager* qm = cm->qm;
|
||||
int return_val = 0;
|
||||
Entry *e;
|
||||
struct berval crp_uuid;
|
||||
@ -3072,7 +3071,7 @@ int pcache_initialize()
|
||||
}
|
||||
}
|
||||
|
||||
syn_UUID = syn_find( "1.3.6.1.1.16.1 ");
|
||||
syn_UUID = syn_find( "1.3.6.1.1.16.1");
|
||||
if ( syn_UUID == NULL ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"pcache_initialize: unable to find UUID syntax\n",
|
||||
|
Loading…
Reference in New Issue
Block a user