Gitweb:
https://git.exim.org/exim.git/commitdiff/4c51d3e7c219861025834ea6a1a8457301838f95
Commit: 4c51d3e7c219861025834ea6a1a8457301838f95
Parent: 593107c7f2fe474664e51f9b2ce790873f4df4f8
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Wed Aug 11 12:41:16 2021 +0100
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Wed Aug 11 12:41:16 2021 +0100
Fix name of option in error log line
---
src/src/transports/appendfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/src/transports/appendfile.c b/src/src/transports/appendfile.c
index 2d008d9..a53e3bc 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;
}