From: Michael Haardt Date: Tue, 30 Dec 2008 13:12:02 +0000 (+0000) Subject: util-spool_in.c references in spool_read_header() the globals X-Git-Tag: DEVEL_PDKIM_START~8 X-Git-Url: https://git.exim.org/users/jgh/exim.git/commitdiff_plain/83e11d00e0583100566e2e2f3062f5e29c8ab87f?ds=sidebyside util-spool_in.c references in spool_read_header() the globals spam_score, spam_bar and spam_report. It appears somebody forgot to add them to the eximon globals when they became stored globals in Exim. This patch fixes the problem and eximon compiles again. --- diff --git a/src/exim_monitor/em_globals.c b/src/exim_monitor/em_globals.c index f6dcef384..fc15dc704 100644 --- a/src/exim_monitor/em_globals.c +++ b/src/exim_monitor/em_globals.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/exim_monitor/em_globals.c,v 1.13 2008/01/16 09:32:25 tom Exp $ */ +/* $Cambridge: exim/src/exim_monitor/em_globals.c,v 1.14 2008/12/30 13:12:02 michael Exp $ */ /************************************************* * Exim Monitor * @@ -166,6 +166,9 @@ uschar *local_scan_data = NULL; BOOL log_timezone = FALSE; #ifdef WITH_CONTENT_SCAN +uschar *spam_bar = NULL; +uschar *spam_report = NULL; +uschar *spam_score = NULL; uschar *spam_score_int = NULL; #endif