From: Jeremy Harris Date: Sun, 21 Jul 2013 23:06:04 +0000 (+0100) Subject: Fix debug output in ${acl } X-Git-Tag: exim-4_82_RC2~29 X-Git-Url: https://git.exim.org/users/jgh/exim.git/commitdiff_plain/60f8e1e888f78e559e718c2e23c1ceb0546779a8 Fix debug output in ${acl } --- diff --git a/src/src/expand.c b/src/src/expand.c index 1da222563..dba047b28 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -1898,8 +1898,8 @@ while (i < nsub) DEBUG(D_expand) debug_printf("expanding: acl: %s arg: %s%s\n", sub[0], - acl_narg>0 ? sub[1] : US"", - acl_narg>1 ? " +more" : ""); + acl_narg>0 ? acl_arg[0] : US"", + acl_narg>1 ? " +more" : ""); ret = acl_eval(acl_where, sub[0], user_msgp, &tmp);