diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-06-14 20:43:06 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-06-14 21:04:46 +0100 |
commit | 9eed571fd7c3236326cc6ea74f1455b027df7604 (patch) | |
tree | ea6b576f3dba3445c4bad666d28b2431f2eed324 /src | |
parent | d3a538c8fee9f31b29947ad73445f50902140899 (diff) |
Taint: fix verify. Bug 2598
Diffstat (limited to 'src')
-rw-r--r-- | src/src/acl.c | 2 |
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; |