summaryrefslogtreecommitdiff
path: root/src/exim_monitor/em_globals.c
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-09-10 14:26:58 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2014-09-10 18:35:54 +0100
commite91ad4a760cbf58e1f455d2ba226d80aa6c2da05 (patch)
treebb1d6bb3cf0151f3153956df8c96bf59e259eb9c /src/exim_monitor/em_globals.c
parent41afb5cb41e74e265963cb53fcdc6d85379d962a (diff)
Fix undersized buffer use by eximon. Bug 1527
The long spoolfile line now used for certificate info was too big, resulting in an apparent syntax error in the file. Apart from using a decent size, do autogrow in case of immense certificates.
Diffstat (limited to 'src/exim_monitor/em_globals.c')
-rw-r--r--src/exim_monitor/em_globals.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/exim_monitor/em_globals.c b/src/exim_monitor/em_globals.c
index 671bd7f03..918659d98 100644
--- a/src/exim_monitor/em_globals.c
+++ b/src/exim_monitor/em_globals.c
@@ -220,6 +220,10 @@ tls_support tls_in = {
-1, /* tls_active */
0, /* bits */
FALSE, /* tls_certificate_verified */
+#ifdef EXPERIMENTAL_DANE
+ FALSE, /* dane_verified */
+ 0, /* tlsa_usage */
+#endif
NULL, /* tls_cipher */
FALSE, /* tls_on_connect */
NULL, /* tls_on_connect_ports */