X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fnisplus.c;h=6a6aef570280afe94c9eeaab53bc1e48f102de97;hb=2844a966d127fb663ba96330dd7ccb37bb9e0ed1;hp=cd72a6b44fa54e6ba4b751756abdd00c2395da3c;hpb=67a57a5afd313490a8763d60ec4df857b9cf239b;p=exim.git diff --git a/src/src/lookups/nisplus.c b/src/src/lookups/nisplus.c index cd72a6b44..6a6aef570 100644 --- a/src/src/lookups/nisplus.c +++ b/src/src/lookups/nisplus.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" @@ -272,15 +273,15 @@ fprintf(f, "Library version: NIS+: Exim version %s\n", EXIM_VERSION_STR); static lookup_info _lookup_info = { - US"nisplus", /* lookup name */ - lookup_querystyle, /* query-style lookup */ - nisplus_open, /* open function */ - NULL, /* check function */ - nisplus_find, /* find function */ - NULL, /* no close function */ - NULL, /* no tidy function */ - nisplus_quote, /* quoting function */ - nisplus_version_report /* version reporting */ + .name = US"nisplus", /* lookup name */ + .type = lookup_querystyle, /* query-style lookup */ + .open = nisplus_open, /* open function */ + .check = NULL, /* check function */ + .find = nisplus_find, /* find function */ + .close = NULL, /* no close function */ + .tidy = NULL, /* no tidy function */ + .quote = nisplus_quote, /* quoting function */ + .version_report = nisplus_version_report /* version reporting */ }; #ifdef DYNLOOKUP