X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/e6d225ae6e6811d3c88dc201642a2127ff6c11bd..6f5d1ca3b1563d0ed580a43ba711b3534b19234e:/src/src/lookups/spf.c diff --git a/src/src/lookups/spf.c b/src/src/lookups/spf.c index 2ca4bbab4..23ad2addd 100644 --- a/src/src/lookups/spf.c +++ b/src/src/lookups/spf.c @@ -1,5 +1,3 @@ -/* $Cambridge: exim/src/src/lookups/spf.c,v 1.3 2009/11/11 14:43:28 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ @@ -20,7 +18,9 @@ #include "../exim.h" #ifndef EXPERIMENTAL_SPF -static void dummy(int x) { dummy(x-1); } +static void dummy(int x); +static void dummy2(int x) { dummy(x-1); } +static void dummy(int x) { dummy2(x-1); } #else #include "lf_functions.h" @@ -74,6 +74,24 @@ static int spf_find(void *handle, uschar *filename, uschar *keystring, int key_l return OK; } + +/************************************************* +* Version reporting entry point * +*************************************************/ + +/* See local README for interface description. */ + +#include "../version.h" + +void +spf_version_report(FILE *f) +{ +#ifdef DYNLOOKUP +fprintf(f, "Library version: SPF: Exim version %s\n", EXIM_VERSION_STR); +#endif +} + + static lookup_info _lookup_info = { US"spf", /* lookup name */ 0, /* not absfile, not query style */ @@ -82,7 +100,8 @@ static lookup_info _lookup_info = { spf_find, /* find function */ spf_close, /* close function */ NULL, /* no tidy function */ - NULL /* no quoting function */ + NULL, /* no quoting function */ + spf_version_report /* version reporting */ }; #ifdef DYNLOOKUP