X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/56e0c4ce946ae13628c4349f982c3407e1019dd0..6545de78cb822ab5db97a2f16fe7a42cc9488bd8:/src/src/lookups/dsearch.c diff --git a/src/src/lookups/dsearch.c b/src/src/lookups/dsearch.c index 575872c41..7395065e7 100644 --- a/src/src/lookups/dsearch.c +++ b/src/src/lookups/dsearch.c @@ -119,6 +119,24 @@ static dsearch_close(void *handle) handle = handle; /* Avoid compiler warning */ } + +/************************************************* +* Version reporting entry point * +*************************************************/ + +/* See local README for interface description. */ + +#include "../version.h" + +void +dsearch_version_report(FILE *f) +{ +#ifdef DYNLOOKUP +fprintf(f, "Library version: dsearch: Exim version %s\n", EXIM_VERSION_STR); +#endif +} + + static lookup_info _lookup_info = { US"dsearch", /* lookup name */ lookup_absfile, /* uses absolute file name */ @@ -127,7 +145,8 @@ static lookup_info _lookup_info = { dsearch_find, /* find function */ dsearch_close, /* close function */ NULL, /* no tidy function */ - NULL /* no quoting function */ + NULL, /* no quoting function */ + dsearch_version_report /* version reporting */ }; #ifdef DYNLOOKUP