]> git.sur5r.net Git - openldap/commitdiff
constify berval arg to load_extop(), to match usage
authorHallvard Furuseth <hallvard@openldap.org>
Fri, 14 Oct 2005 12:57:07 +0000 (12:57 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Fri, 14 Oct 2005 12:57:07 +0000 (12:57 +0000)
servers/slapd/extended.c
servers/slapd/proto-slap.h

index bef3b965604c05eb7a7da277da331cd659850258..894de43f5254487a57612ce135bf752c9eef7942 100644 (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 )
 {
index 6369ef409dbc4f6bad77df8899fd74ef7057b1f6..f6812d5c9e9eac8fc5aab242065ba3c910acd0db 100644 (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 ));