summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2013-07-22 00:06:04 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2013-07-22 00:06:04 +0100
commit60f8e1e888f78e559e718c2e23c1ceb0546779a8 (patch)
treef24d307afb574b0580b6f851e76edc6b824c910b /src
parent351a5bc85e6950e3608c41f1bd15368b0a49d5f3 (diff)
Fix debug output in ${acl }
Diffstat (limited to 'src')
-rw-r--r--src/src/expand.c4
1 files changed, 2 insertions, 2 deletions
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"<none>",
- acl_narg>1 ? " +more" : "");
+ acl_narg>0 ? acl_arg[0] : US"<none>",
+ acl_narg>1 ? " +more" : "");
ret = acl_eval(acl_where, sub[0], user_msgp, &tmp);