summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-02-26 14:58:54 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2017-02-26 15:03:15 +0000
commitc0ad8edfe5615780184f88bfc8fa306b76db6bbc (patch)
tree94742d57ce33a2be55c0a46f1723d3796ddb80dc /src
parent0aca614ff6a0fb631e4e3fb02c6f13ab5febcbed (diff)
DKIM: rework error logging - compiler quietening. Bug 966
Diffstat (limited to 'src')
-rw-r--r--src/src/transports/smtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c
index 90ec87b30..c5908641e 100644
--- a/src/src/transports/smtp.c
+++ b/src/src/transports/smtp.c
@@ -3030,7 +3030,7 @@ if (!sx.ok)
save_errno = errno;
code = '4';
message = string_sprintf("send() to %s [%s] failed: %s",
- host->name, host->address, message ? message : strerror(save_errno));
+ host->name, host->address, message ? message : US strerror(save_errno));
sx.send_quit = FALSE;
goto FAILED;
}