From: Kurt Zeilenga Date: Tue, 18 Jun 2002 22:41:03 +0000 (+0000) Subject: make curlies match X-Git-Tag: NO_SLAP_OP_BLOCKS~1411 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=35749a2520da8fc72050f8ed7ff5de8522d57d9a;p=openldap make curlies match --- diff --git a/servers/slapd/result.c b/servers/slapd/result.c index 9ab1a94a09..b6099f4cf2 100644 --- a/servers/slapd/result.c +++ b/servers/slapd/result.c @@ -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