summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2017-12-02 21:11:46 +0000
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2017-12-03 19:50:31 +0100
commit847cd15fbc5b830cc7d36c32614548149c35c9fa (patch)
tree975a2752eef2323c2f88457d0722fe8f138b909b
parent9a5562015d6bac81e5f25351e2e6728b83f287f7 (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,