summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2023-07-24 15:05:35 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2023-07-24 15:05:35 +0100
commitc5768a4180949d5b817a95850f5ff287c8765099 (patch)
treeb3bd65e930f55e92177db1b814f457c99f7355e4
parent98820cd6053797a63f8daddd56c67ea6d8c13d46 (diff)
Fix DYNLOOKUP build for lsearch. Bug 3012
-rw-r--r--src/src/lookups/lsearch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/lookups/lsearch.c b/src/src/lookups/lsearch.c
index f668f60f2..fcbd36952 100644
--- a/src/src/lookups/lsearch.c
+++ b/src/src/lookups/lsearch.c
@@ -421,7 +421,7 @@ gstring *
lsearch_version_report(gstring * g)
{
#ifdef DYNLOOKUP
-g = string_fmt_append(g, "Library version: lsearch: Exim version %s\n", EXIM_VERSION_STR));
+g = string_fmt_append(g, "Library version: lsearch: Exim version %s\n", EXIM_VERSION_STR);
#endif
return g;
}