]> git.sur5r.net Git - openldap/commitdiff
clean up examples
authorPierangelo Masarati <ando@openldap.org>
Thu, 17 Jun 2004 22:45:08 +0000 (22:45 +0000)
committerPierangelo Masarati <ando@openldap.org>
Thu, 17 Jun 2004 22:45:08 +0000 (22:45 +0000)
doc/man/man5/slapd.access.5

index ac3468491270f052e867ca02d880cf3604371b53..d1d819f17fe22220002efedac2d1fde2d57eb850 100644 (file)
@@ -717,7 +717,7 @@ To match the desired subtree, the rule would be more precisely
 written:
 .LP
 .nf
-       access to dn.regex="^(.+,)?dc=example,dc=com$$"
+       access to dn.regex="^(.+,)?dc=example,dc=com$"
                by ...
 .fi
 .LP
@@ -737,7 +737,7 @@ that matches the
 clause, one could use
 .LP
 .nf
-       access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$$"
+       access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
                by dn.regex="^uid=$1,dc=example,dc=com$$" write
                by ...
 .fi
@@ -747,7 +747,7 @@ However, since all that is required in the
 clause is substring expansion, a more efficient solution is
 .LP
 .nf
-       access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$$"
+       access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
                by dn.exact,expand="uid=$1,dc=example,dc=com" write
                by ...
 .fi