summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2021-08-11 12:41:16 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2021-08-11 12:41:16 +0100
commit4c51d3e7c219861025834ea6a1a8457301838f95 (patch)
tree0ca5ed06ef795a6bdffcd04995e12cbe4f853c70
parent593107c7f2fe474664e51f9b2ce790873f4df4f8 (diff)
downloadexim4-4c51d3e7c219861025834ea6a1a8457301838f95.tar.gz
Fix name of option in error log line
-rw-r--r--src/src/transports/appendfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/transports/appendfile.c b/src/src/transports/appendfile.c
index 2d008d97d..a53e3bc9c 100644
--- a/src/src/transports/appendfile.c
+++ b/src/src/transports/appendfile.c
@@ -435,7 +435,7 @@ if ((s = ob->create_file_string ) && *s)
else if (Ustrcmp(s, "inhome") == 0) val = create_inhome;
else
log_write(0, LOG_PANIC_DIE|LOG_CONFIG,
- "invalid value given for \"file_create\" for the %s transport: '%s'",
+ "invalid value given for \"create_file\" for the %s transport: '%s'",
tblock->name, s);
ob->create_file = val;
}