diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2021-04-01 21:28:59 +0200 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2021-06-24 21:43:10 +0200 |
commit | f7c791b769a3a5395d92d29d27aa58f9d442373c (patch) | |
tree | f6704ad5504ed36bfa13e3f099cac02e4bff4411 /src | |
parent | f7da81e789e2f20b00f46f07260488f337984b84 (diff) |
directory
(cherry picked from commit 5f41e800ce9cc7ad154047298914df955e905bf4)
Diffstat (limited to 'src')
-rw-r--r-- | src/src/directory.c | 4 |
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) { |