mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
make curlies match
This commit is contained in:
parent
55521da9cb
commit
35749a2520
@ -236,14 +236,14 @@ send_ldap_response(
|
||||
}
|
||||
}
|
||||
if (conn->c_is_udp && op->o_protocol == LDAP_VERSION2) {
|
||||
rc = ber_printf( ber, "{is{t{ess",
|
||||
rc = ber_printf( ber, "{is{t{ess" /*"}}}"*/,
|
||||
msgid, "", tag, err,
|
||||
matched == NULL ? "" : matched,
|
||||
text == NULL ? "" : text );
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
rc = ber_printf( ber, "{it{ess",
|
||||
rc = ber_printf( ber, "{it{ess" /*"}}"*/,
|
||||
msgid, tag, err,
|
||||
matched == NULL ? "" : matched,
|
||||
text == NULL ? "" : text );
|
||||
@ -275,11 +275,11 @@ send_ldap_response(
|
||||
}
|
||||
|
||||
if( rc != -1 ) {
|
||||
rc = ber_printf( ber, "N}N}" );
|
||||
rc = ber_printf( ber, /*"{{"*/ "N}N}" );
|
||||
}
|
||||
#ifdef LDAP_CONNECTIONLESS
|
||||
if( conn->c_is_udp && op->o_protocol == LDAP_VERSION2 && rc != -1 ) {
|
||||
rc = ber_printf( ber, "N}" );
|
||||
rc = ber_printf( ber, /*"{"*/ "N}" );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user