From: Alan T. DeKok Date: Thu, 26 Aug 2021 12:58:29 +0000 (-0400) Subject: print out values we're parsing X-Git-Tag: release_3_0_24~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d801fcd0691be6935f1cf4a2d595ed68cb8f5406;p=thirdparty%2Ffreeradius-server.git print out values we're parsing --- diff --git a/src/modules/rlm_ldap/attrmap.c b/src/modules/rlm_ldap/attrmap.c index 98d914fbd14..1e5624782dc 100644 --- a/src/modules/rlm_ldap/attrmap.c +++ b/src/modules/rlm_ldap/attrmap.c @@ -110,6 +110,8 @@ int rlm_ldap_map_getvalue(TALLOC_CTX *ctx, VALUE_PAIR **out, REQUEST *request, v for (i = 0; i < self->count; i++) { if (!self->values[i]->bv_len) continue; + RDEBUG3("Parsing %s = %s", map->lhs->name, self->values[i]->bv_val); + vp = fr_pair_afrom_da(ctx, map->lhs->tmpl_da); rad_assert(vp);