X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/0b4dfe7aa1f12214abdfa1037497d6c49a471612..1ddb1855402d48ad735e46abaf0d662e45600ecd:/src/src/lookups/redis.c diff --git a/src/src/lookups/redis.c b/src/src/lookups/redis.c index 337fdae15..0bc506093 100644 --- a/src/src/lookups/redis.c +++ b/src/src/lookups/redis.c @@ -3,6 +3,7 @@ *************************************************/ /* Copyright (c) University of Cambridge 1995 - 2018 */ +/* Copyright (c) The Exim Maintainers 2020 */ /* See the file NOTICE for conditions of use and distribution. */ #include "../exim.h" @@ -434,29 +435,31 @@ return quoted; *************************************************/ #include "../version.h" -void -redis_version_report(FILE *f) +gstring * +redis_version_report(gstring * g) { -fprintf(f, "Library version: REDIS: Compile: %d [%d]\n", - HIREDIS_MAJOR, HIREDIS_MINOR); +g = string_fmt_append(g, + "Library version: REDIS: Compile: %d [%d]\n", HIREDIS_MAJOR, HIREDIS_MINOR); #ifdef DYNLOOKUP -fprintf(f, " Exim version %s\n", EXIM_VERSION_STR); +g = string_fmt_append(g, + " Exim version %s\n", EXIM_VERSION_STR); #endif +return g; } /* These are the lookup_info blocks for this driver */ static lookup_info redis_lookup_info = { - US"redis", /* lookup name */ - lookup_querystyle, /* query-style lookup */ - redis_open, /* open function */ - NULL, /* no check function */ - redis_find, /* find function */ - NULL, /* no close function */ - redis_tidy, /* tidy function */ - redis_quote, /* quoting function */ - redis_version_report /* version reporting */ + .name = US"redis", /* lookup name */ + .type = lookup_querystyle, /* query-style lookup */ + .open = redis_open, /* open function */ + .check = NULL, /* no check function */ + .find = redis_find, /* find function */ + .close = NULL, /* no close function */ + .tidy = redis_tidy, /* tidy function */ + .quote = redis_quote, /* quoting function */ + .version_report = redis_version_report /* version reporting */ }; #ifdef DYNLOOKUP