diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-03-23 21:28:25 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-03-23 21:29:09 +0000 |
commit | b8bf753b7092246e03152e934d7e92c5db80dca1 (patch) | |
tree | 48bb3f02702bfaff29c4fa75975f03e6eb80b8b2 /src | |
parent | a39bd74d3e942db1b465cae643e1a4766ffb304e (diff) |
Fix compile errors
Diffstat (limited to 'src')
-rw-r--r-- | src/src/transport.c | 2 | ||||
-rw-r--r-- | src/src/transports/smtp.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/src/transport.c b/src/src/transport.c index 7b3d46908..c76873698 100644 --- a/src/src/transport.c +++ b/src/src/transport.c @@ -1632,8 +1632,6 @@ Arguments: Returns: TRUE if new_message_id set; FALSE otherwise */ -typedef struct msgq_s msgq_t; - typedef struct msgq_s { uschar message_id [MESSAGE_ID_LENGTH + 1]; diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index 446b3702b..3c983220d 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -251,8 +251,8 @@ smtp_transport_options_block smtp_transport_option_defaults = { NULL, /* expand_retry_include_ip_address */ TRUE /* retry_include_ip_address */ #ifdef EXPERIMENTAL_SOCKS -#endif ,NULL /* socks_proxy */ +#endif #ifdef SUPPORT_TLS ,NULL, /* tls_certificate */ NULL, /* tls_crl */ |