Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0
-
None
-
None
Description
When trying to split a LDIF line every N chars, the last char of each line is repeated on the next line :
abcdef to be split wih 3 chars lines will generate :
"abc\n"
" cd\n"
" de\n"
" ef"
instead of
"abc\n"
" de\n"
" f"