X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fibase.c;h=10c96201920ad558802031635f130c5c191e61c3;hb=80fea873648ca2ab2e592999a336c59cf054ab55;hp=553d3681df87444fb5f28e64d6a47743f57d0592;hpb=e6d225ae6e6811d3c88dc201642a2127ff6c11bd;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/lookups/ibase.c b/src/src/lookups/ibase.c index 553d3681d..10c962019 100644 --- a/src/src/lookups/ibase.c +++ b/src/src/lookups/ibase.c @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/lookups/ibase.c,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2009 */ +/* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ /* The code in this module was contributed by Ard Biesheuvel. */ @@ -453,7 +451,7 @@ deferred with a retryable error. */ static int ibase_find(void *handle, uschar * filename, uschar * query, int length, - uschar ** result, uschar ** errmsg, BOOL *do_cache) + uschar ** result, uschar ** errmsg, uint *do_cache) { int sep = 0; uschar *server; @@ -546,6 +544,24 @@ static uschar *ibase_quote(uschar * s, uschar * opt) return quoted; } + +/************************************************* +* Version reporting entry point * +*************************************************/ + +/* See local README for interface description. */ + +#include "../version.h" + +void +ibase_version_report(FILE *f) +{ +#ifdef DYNLOOKUP +fprintf(f, "Library version: ibase: Exim version %s\n", EXIM_VERSION_STR); +#endif +} + + static lookup_info _lookup_info = { US"ibase", /* lookup name */ lookup_querystyle, /* query-style lookup */ @@ -554,13 +570,14 @@ static lookup_info _lookup_info = { ibase_find, /* find function */ NULL, /* no close function */ ibase_tidy, /* tidy function */ - ibase_quote /* quoting function */ + ibase_quote, /* quoting function */ + ibase_version_report /* version reporting */ }; #ifdef DYNLOOKUP #define ibase_lookup_module_info _lookup_module_info #endif - + static lookup_info *_lookup_list[] = { &_lookup_info }; lookup_module_info ibase_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 };