]> git.sur5r.net Git - openldap/commitdiff
s/aa/allowed/; we already ran into the issue of having a run-time loadable overlay...
authorPierangelo Masarati <ando@openldap.org>
Tue, 18 Aug 2009 11:07:26 +0000 (11:07 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 18 Aug 2009 11:07:26 +0000 (11:07 +0000)
contrib/slapd-modules/allowed/README
contrib/slapd-modules/allowed/allowed.c

index 4c2fe17e1d9536cdc8402934d56887c698ba83dc..32abdf5f64e0955987e9da198ea55a6a1a392e08 100644 (file)
@@ -1,4 +1,4 @@
-This directory contains a slapd overlay, aa.
+This directory contains a slapd overlay, "allowed".
 
     --- o --- o --- o ---
 
@@ -33,21 +33,21 @@ Usage: add to slapd.conf(5)
 
 
 moduleload     path/to/allowed.so
-overlay                aa
+overlay                allowed
 
 or add
 
-dn: olcOverlay={0}aa,olcDatabase={1}bdb,cn=config
+dn: olcOverlay={0}allowed,olcDatabase={1}bdb,cn=config
 objectClass: olcOverlayConfig
-olcOverlay: {0}aa
+olcOverlay: {0}allowed
 
 as a child of the database that's intended to support this feature
 (replace "olcDatabase={1}bdb,cn=config" with the appropriate parent);
 or use
 
-dn: olcOverlay={0}aa,olcDatabase={-1}frontend,cn=config
+dn: olcOverlay={0}allowed,olcDatabase={-1}frontend,cn=config
 objectClass: olcOverlayConfig
-olcOverlay: {0}aa
+olcOverlay: {0}allowed
 
 if it's supposed to be global.
 
@@ -56,7 +56,7 @@ if it's supposed to be global.
 No Makefile is provided. Use a command line similar to:
 
 gcc -shared -I../../../include -I../../../servers/slapd -Wall -g \
-       -o allop.so allop.c
+       -o allowed.so allowed.c
 
 to compile this overlay, or even better use OpenLDAP's libtool as appropriate.
 
index ae0d2324d1a16121d3f76daebdb32be065d270df..6f5795d853eb5cb23d5b65bff590fa5d5406a6d3 100644 (file)
@@ -371,7 +371,7 @@ aa_initialize( void )
 {
        int i;
 
-       aa.on_bi.bi_type = "aa";
+       aa.on_bi.bi_type = "allowed";
 
        aa.on_bi.bi_operational = aa_operational;