mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-12 15:10:31 +08:00
ITS#8003 fix off-by-one in LDIF length
must account for leading space when counting total number of lines
This commit is contained in:
parent
508f4158bc
commit
c8353f7acd
@ -52,12 +52,12 @@ LDAP_LDIF_V (int) ldif_debug;
|
||||
*/
|
||||
#define LDIF_SIZE_NEEDED(nlen,vlen) \
|
||||
((nlen) + 4 + LDIF_BASE64_LEN(vlen) \
|
||||
+ ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / LDIF_LINE_WIDTH * 2 ))
|
||||
+ ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / (LDIF_LINE_WIDTH-1) * 2 ))
|
||||
|
||||
#define LDIF_SIZE_NEEDED_WRAP(nlen,vlen,wrap) \
|
||||
((nlen) + 4 + LDIF_BASE64_LEN(vlen) \
|
||||
+ ((wrap) == 0 ? ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / ( LDIF_LINE_WIDTH ) * 2 ) : \
|
||||
((wrap) == LDIF_LINE_WIDTH_MAX ? 0 : ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / (wrap) * 2 ))))
|
||||
+ ((wrap) == 0 ? ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / ( LDIF_LINE_WIDTH-1 ) * 2 ) : \
|
||||
((wrap) == LDIF_LINE_WIDTH_MAX ? 0 : ((LDIF_BASE64_LEN(vlen) + (nlen) + 3) / (wrap-1) * 2 ))))
|
||||
|
||||
LDAP_LDIF_F( int )
|
||||
ldif_parse_line LDAP_P((
|
||||
|
Loading…
x
Reference in New Issue
Block a user