]> git.netwichtig.de Git - user/henk/code/exim.git/blobdiff - src/src/globals.c
Callout/hold: fix uninitialized variable
[user/henk/code/exim.git] / src / src / globals.c
index f3e4bad96bb5b3c0c01e26b799a9aefd83e476d4..8dd3922cc41a9778653edefb2c0a9723daab06c5 100644 (file)
@@ -529,17 +529,19 @@ uid_t   config_uid             = 0;
 #endif
 
 int     connection_max_messages= -1;
+uschar *continue_proxy_cipher  = NULL;
 uschar *continue_hostname      = NULL;
 uschar *continue_host_address  = NULL;
 BOOL    continue_more          = FALSE;
 int     continue_sequence      = 1;
-BOOL    continue_proxy        = FALSE;
 uschar *continue_transport     = NULL;
 
 uschar *csa_status             = NULL;
 cut_t   cutthrough = {
+  FALSE,                               /* verify-only: normal delivery */
   FALSE,                               /* delivery: when to attempt */
   FALSE,                               /* on defer: spool locally */
+  FALSE,                               /* not a TLS conn yet */
   -1,                                  /* fd: open connection */
   0,                                   /* nrcpt: number of addresses */
 };