]> git.ipfire.org Git - people/ms/dma.git/commitdiff
local: use space instead of tab in "From " separator
authorSimon Schubert <2@0x2c.org>
Sat, 30 Jan 2016 09:17:14 +0000 (10:17 +0100)
committerSimon Schubert <2@0x2c.org>
Sat, 30 Jan 2016 09:17:14 +0000 (10:17 +0100)
Submitted-by: Gregor Larson
local.c

diff --git a/local.c b/local.c
index e3e015217feac05493b5dc30f530a82c3905f366..94e217928983743c846c357e6e9a78c86de7aee2 100644 (file)
--- a/local.c
+++ b/local.c
@@ -196,7 +196,7 @@ retry:
                goto out;
        }
 
-       error = snprintf(line, sizeof(line), "%sFrom %s\t%s", newline, sender, ctime(&now));
+       error = snprintf(line, sizeof(line), "%sFrom %s %s", newline, sender, ctime(&now));
        if (error < 0 || (size_t)error >= sizeof(line)) {
                syslog(LOG_NOTICE, "local delivery deferred: can not write header: %m");
                goto out;