diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2012-11-17 21:32:08 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2012-11-17 21:32:08 +0000 |
commit | 6c60858ca0037cfdbd48dac9f221da35a0ea64b6 (patch) | |
tree | 036a0488083a81eef79ffe17dcbf37b25ef26897 | |
parent | 4dbca2613a00a88484ffa7d4d39f93be1d7e1e39 (diff) |
Fix initializer for struct tls_support, per edc33b5f1aca and 817d9f576cd.
-rw-r--r-- | src/exim_monitor/em_globals.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exim_monitor/em_globals.c b/src/exim_monitor/em_globals.c index 366af7e97..b0a912e5f 100644 --- a/src/exim_monitor/em_globals.c +++ b/src/exim_monitor/em_globals.c @@ -213,6 +213,7 @@ int string_datestamp_type = -1; BOOL timestamps_utc = FALSE; tls_support tls_in = { -1, /* tls_active */ + 0, /* bits */ FALSE, /* tls_certificate_verified */ NULL, /* tls_cipher */ FALSE, /* tls_on_connect */ |