From: Hallvard Furuseth Date: Wed, 11 Jun 2003 16:22:29 +0000 (+0000) Subject: Add 'deref=' to Statslog SRCH output. X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~897 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9c0ca8d9a3d44853befb9fc145490b861d038912;p=openldap Add 'deref=' to Statslog SRCH output. --- diff --git a/servers/slapd/search.c b/servers/slapd/search.c index c033b1fe7b..dfa96b9c18 100644 --- a/servers/slapd/search.c +++ b/servers/slapd/search.c @@ -212,9 +212,11 @@ do_search( char abuf[BUFSIZ/2], *ptr = abuf; int len = 0, alen; + sprintf(abuf, "scope=%d deref=%d", op->ors_scope, op->ors_deref); Statslog( LDAP_DEBUG_STATS, - "conn=%lu op=%lu SRCH base=\"%s\" scope=%d filter=\"%s\"\n", - op->o_connid, op->o_opid, op->o_req_dn.bv_val, op->ors_scope, op->ors_filterstr.bv_val ); + "conn=%lu op=%lu SRCH base=\"%s\" %s filter=\"%s\"\n", + op->o_connid, op->o_opid, op->o_req_dn.bv_val, abuf, + op->ors_filterstr.bv_val ); for ( i = 0; iors_attrs[i].an_name.bv_len; @@ -224,7 +226,7 @@ do_search( if (len && (len + 1 + alen >= sizeof(abuf))) { Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu SRCH attr=%s\n", op->o_connid, op->o_opid, abuf, 0, 0 ); - len = 0; + len = 0; ptr = abuf; } if (len) {