Skip to content

Commit 5b135cc

Browse files
committed
local: use space instead of tab in "From " separator
Submitted-by: Gregor Larson
1 parent c175545 commit 5b135cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

local.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ deliver_local(struct qitem *it)
196196
goto out;
197197
}
198198

199-
error = snprintf(line, sizeof(line), "%sFrom %s\t%s", newline, sender, ctime(&now));
199+
error = snprintf(line, sizeof(line), "%sFrom %s %s", newline, sender, ctime(&now));
200200
if (error < 0 || (size_t)error >= sizeof(line)) {
201201
syslog(LOG_NOTICE, "local delivery deferred: can not write header: %m");
202202
goto out;

0 commit comments

Comments
 (0)