Gitweb:
http://git.exim.org/exim.git/commitdiff/533aaf9166d3e1cca6dac7e309914a88b25e4260
Commit: 533aaf9166d3e1cca6dac7e309914a88b25e4260
Parent: 67791ce4a0ae39a79aab22157d587d774190ac61
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Sun May 25 13:21:39 2014 +0100
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Sun May 25 13:21:39 2014 +0100
Missing initialiser
---
src/src/globals.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/src/globals.c b/src/src/globals.c
index b3d2ab8..761db61 100644
--- a/src/src/globals.c
+++ b/src/src/globals.c
@@ -1387,6 +1387,9 @@ transport_instance transport_defaults = {
FALSE, /* log_defer_output */
TRUE_UNSET /* retry_use_local_part: BOOL, but set neither
1 nor 0 so can detect unset */
+#ifdef EXPERIMENTAL_TPDA
+ ,NULL /* tpda_delivery_action */
+#endif
};
int transport_count;