summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-06-14 20:43:06 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2020-06-14 21:04:46 +0100
commit9eed571fd7c3236326cc6ea74f1455b027df7604 (patch)
treeea6b576f3dba3445c4bad666d28b2431f2eed324 /src
parentd3a538c8fee9f31b29947ad73445f50902140899 (diff)
Taint: fix verify. Bug 2598
Diffstat (limited to 'src')
-rw-r--r--src/src/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/acl.c b/src/src/acl.c
index 2a52ce7b2..297489b3f 100644
--- a/src/src/acl.c
+++ b/src/src/acl.c
@@ -1789,7 +1789,7 @@ switch(vp->value)
/* Remaining items are optional; they apply to sender and recipient
verification, including "header sender" verification. */
-while ((ss = string_nextinlist(&list, &sep, big_buffer, big_buffer_size)))
+while ((ss = string_nextinlist(&list, &sep, NULL, 0)))
{
if (strcmpic(ss, US"defer_ok") == 0) defer_ok = TRUE;
else if (strcmpic(ss, US"no_details") == 0) no_details = TRUE;