summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
{