Skip to content
Snippets Groups Projects
Commit 24546e1e authored by Côme Bernigaud's avatar Côme Bernigaud
Browse files

Fixes: #2368 Only replacing keyword at beginning of new lines now.

parent 2f964e39
No related branches found
No related tags found
No related merge requests found
......@@ -68,9 +68,9 @@ while (<>) {
# objectIdentifier -> olcObjectIdentifier:
# objectClass -> olcObjectClasses:
# attributeType -> olcAttributeTypes:
s/objectidentifier/olcObjectIdentifier:/i;
s/attributetype/olcAttributeTypes:/i;
s/objectclass/olcObjectClasses:/i;
s/^objectidentifier/olcObjectIdentifier:/i;
s/^attributetype/olcAttributeTypes:/i;
s/^objectclass/olcObjectClasses:/i;
# [openldap.ldif]
# Then leading whitespace must be fixed. The slapd.conf format allows
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment