Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
8dbd3268
Commit
8dbd3268
authored
May 27, 2000
by
Kurt Zeilenga
Browse files
SLAPD_SCHEMA_NOT_COMPAT: disable indexing
parent
e0bf8e89
Changes
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-ldbm/filterindex.c
View file @
8dbd3268
...
...
@@ -21,8 +21,9 @@ filter_candidates(
Backend
*
be
,
Filter
*
f
)
{
return
NULL
;
return
idl_allids
(
be
)
;
}
#else
static
ID_BLOCK
*
ava_candidates
(
Backend
*
be
,
Ava
*
ava
,
int
type
);
...
...
servers/slapd/back-ldbm/index.c
View file @
8dbd3268
...
...
@@ -15,6 +15,7 @@
#include
"slap.h"
#include
"back-ldbm.h"
#ifndef SLAPD_SCHEMA_NOT_COMPAT
static
int
change_value
(
Backend
*
be
,
DBCache
*
db
,
...
...
@@ -25,6 +26,7 @@ static int change_value(Backend *be,
int
(
*
idl_func
)(
Backend
*
,
DBCache
*
,
Datum
,
ID
));
static
int
index2prefix
(
int
indextype
);
#endif
int
index_add_entry
(
...
...
@@ -32,6 +34,7 @@ index_add_entry(
Entry
*
e
)
{
#ifndef SLAPD_SCHEMA_NOT_COMPAT
Attribute
*
ap
;
struct
berval
bv
;
struct
berval
*
bvals
[
2
];
...
...
@@ -74,10 +77,11 @@ index_add_entry(
Debug
(
LDAP_DEBUG_TRACE
,
"<= index_add( %ld,
\"
%s
\"
) 0
\n
"
,
e
->
e_id
,
e
->
e_ndn
,
0
);
#endif
return
(
0
);
}
#ifndef SLAPD_SCHEMA_NOT_COMPAT
ID_BLOCK
*
index_read
(
Backend
*
be
,
...
...
@@ -221,8 +225,8 @@ change_value(
return
(
rc
);
}
/* static int change_value() */
}
#endif
int
index_change_values
(
...
...
@@ -418,6 +422,7 @@ done:
return
(
0
);
}
#ifndef SLAPD_SCHEMA_NOT_COMPAT
static
int
index2prefix
(
int
indextype
)
{
...
...
@@ -440,3 +445,4 @@ index2prefix( int indextype )
return
(
prefix
);
}
#endif
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment