constify berval arg to load_extop(), to match usage

This commit is contained in:
Hallvard Furuseth 2005-10-14 12:57:07 +00:00
parent f21a6f7ef3
commit 78873370c8
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ done:;
int
load_extop(
struct berval *ext_oid,
const struct berval *ext_oid,
slap_mask_t ext_flags,
SLAP_EXTOP_MAIN_FN *ext_main )
{

View File

@ -868,7 +868,7 @@ typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
int index, struct berval *oid, int blen ));
LDAP_SLAPD_F (int) load_extop LDAP_P((
struct berval *ext_oid,
const struct berval *ext_oid,
slap_mask_t flags,
SLAP_EXTOP_MAIN_FN *ext_main ));