X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/67a57a5afd313490a8763d60ec4df857b9cf239b..5f17d2f09733cc77355841fbf095a95186cc9fe5:/src/src/lookups/testdb.c diff --git a/src/src/lookups/testdb.c b/src/src/lookups/testdb.c index c2d39382b..3ecd10401 100644 --- a/src/src/lookups/testdb.c +++ b/src/src/lookups/testdb.c @@ -3,6 +3,7 @@ *************************************************/ /* Copyright (c) University of Cambridge 1995 - 2015 */ +/* Copyright (c) The Exim Maintainers 2020 */ /* See the file NOTICE for conditions of use and distribution. */ #include "../exim.h" @@ -23,8 +24,6 @@ the find function. */ static void * testdb_open(const uschar * filename, uschar ** errmsg) { -filename = filename; /* Keep picky compilers happy */ -errmsg = errmsg; return (void *)(1); /* Just return something non-null */ } @@ -41,10 +40,6 @@ testdb_find(void * handle, const uschar * filename, const uschar * query, int length, uschar ** result, uschar ** errmsg, uint * do_cache, const uschar * opts) { -handle = handle; /* Keep picky compilers happy */ -filename = filename; -length = length; - if (Ustrcmp(query, "fail") == 0) { *errmsg = US"testdb lookup forced FAIL"; @@ -83,15 +78,15 @@ fprintf(f, "Library version: TestDB: Exim version %s\n", EXIM_VERSION_STR); static lookup_info _lookup_info = { - US"testdb", /* lookup name */ - lookup_querystyle, /* query-style lookup */ - testdb_open, /* open function */ - NULL, /* check function */ - testdb_find, /* find function */ - NULL, /* no close function */ - NULL, /* no tidy function */ - NULL, /* no quoting function */ - testdb_version_report /* version reporting */ + .name = US"testdb", /* lookup name */ + .type = lookup_querystyle, /* query-style lookup */ + .open = testdb_open, /* open function */ + .check = NULL, /* check function */ + .find = testdb_find, /* find function */ + .close = NULL, /* no close function */ + .tidy = NULL, /* no tidy function */ + .quote = NULL, /* no quoting function */ + .version_report = testdb_version_report /* version reporting */ }; #ifdef DYNLOOKUP