X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fredis.c;fp=src%2Fsrc%2Flookups%2Fredis.c;h=3141aacf6fc7b111d93ef5f22bd7349d7d54a76c;hb=9f4001740f061f29c65835c6f7efcab50c27db13;hp=337fdae152d4aa130606fd100f3131e40d128772;hpb=9ad27f49dae5a6375d7951679c90c2e26ad82b5c;p=exim.git diff --git a/src/src/lookups/redis.c b/src/src/lookups/redis.c index 337fdae15..3141aacf6 100644 --- a/src/src/lookups/redis.c +++ b/src/src/lookups/redis.c @@ -448,15 +448,15 @@ fprintf(f, " Exim version %s\n", EXIM_VERSION_STR); /* 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