summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-12-02 21:11:46 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2017-12-02 21:11:46 +0000
commit86b62d918435993f8e4ecc4878a4c92f360543fb (patch)
tree0a964b1b7a80cee5c89f03c1b54c9d10754ef1a7
parentbe9f79c9eb112904d53840958f9f97019136a640 (diff)
Fix initialiser in smtp transport
Broken-by: 838d897c8e
-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 ef9309c47..61e8d8a4f 100644
--- a/src/src/transports/smtp.c
+++ b/src/src/transports/smtp.c
@@ -206,7 +206,7 @@ void smtp_transport_closedown(transport_instance *tblock) {}
smtp_transport_options_block smtp_transport_option_defaults = {
.hosts = NULL,
- .hosts = NULL,
+ .fallback_hosts = NULL,
.hostlist = NULL,
.fallback_hostlist = NULL,
.authenticated_sender = NULL,