From 05e796adcdbe76f643bf938226b0d3c75efd95e6 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Thu, 26 Oct 2017 14:47:11 +0100 Subject: [PATCH] Debug: add trace in the inlist expansion condition --- src/src/expand.c | 5 ++++- src/src/tls-openssl.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/src/expand.c b/src/src/expand.c index bae3114a6..28d12d4d4 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -2821,18 +2821,21 @@ switch(cond_type) uschar *save_iterate_item = iterate_item; int (*compare)(const uschar *, const uschar *); - DEBUG(D_expand) debug_printf_indent("condition: %s\n", name); + DEBUG(D_expand) debug_printf_indent("condition: %s item: %s\n", name, sub[0]); tempcond = FALSE; compare = cond_type == ECOND_INLISTI ? strcmpic : (int (*)(const uschar *, const uschar *)) strcmp; while ((iterate_item = string_nextinlist(&list, &sep, NULL, 0))) + { + DEBUG(D_expand) debug_printf_indent(" compare %s\n", iterate_item); if (compare(sub[0], iterate_item) == 0) { tempcond = TRUE; break; } + } iterate_item = save_iterate_item; } diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index 6f10cf5f7..58401e932 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -29,7 +29,7 @@ functions from the OpenSSL library. */ # include #endif #ifdef EXPERIMENTAL_DANE -# include +# include "danessl.h" #endif -- 2.30.2