summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2021-04-01 21:28:59 +0200
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2021-06-24 21:43:10 +0200
commitf7c791b769a3a5395d92d29d27aa58f9d442373c (patch)
treef6704ad5504ed36bfa13e3f099cac02e4bff4411
parentf7da81e789e2f20b00f46f07260488f337984b84 (diff)
downloadexim4-f7c791b769a3a5395d92d29d27aa58f9d442373c.tar.gz
directory
(cherry picked from commit 5f41e800ce9cc7ad154047298914df955e905bf4)
-rw-r--r--src/src/directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/directory.c b/src/src/directory.c
index f54a781b7..3273eb89b 100644
--- a/src/src/directory.c
+++ b/src/src/directory.c
@@ -44,8 +44,8 @@ uschar c = 1;
struct stat statbuf;
uschar * path;
-if (is_tainted(name))
- { p = US"create"; path = US name; errno = ERRNO_TAINT; goto bad; }
+if (is_tainted2(name, LOG_MAIN|LOG_PANIC, "Tainted path '%s' for new directory", name))
+ { p = US"create"; path = US name; errno = EACCES; goto bad; }
if (parent)
{