X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fpgsql.c;h=a7ea3d57a0957bd3c4415d9018d22abe72d2b0b8;hb=8f0d0a3138e138ffa6bcc94c8378f5eb22573f0e;hp=505f5e5ce7b952d43ac128e3e6aa59e41d529901;hpb=0b4dfe7aa1f12214abdfa1037497d6c49a471612;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/lookups/pgsql.c b/src/src/lookups/pgsql.c index 505f5e5ce..a7ea3d57a 100644 --- a/src/src/lookups/pgsql.c +++ b/src/src/lookups/pgsql.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. */ /* Thanks to Petr Cech for contributing the original code for these @@ -488,15 +489,15 @@ when the connection is established though? */ static lookup_info _lookup_info = { - US"pgsql", /* lookup name */ - lookup_querystyle, /* query-style lookup */ - pgsql_open, /* open function */ - NULL, /* no check function */ - pgsql_find, /* find function */ - NULL, /* no close function */ - pgsql_tidy, /* tidy function */ - pgsql_quote, /* quoting function */ - pgsql_version_report /* version reporting */ + .name = US"pgsql", /* lookup name */ + .type = lookup_querystyle, /* query-style lookup */ + .open = pgsql_open, /* open function */ + .check = NULL, /* no check function */ + .find = pgsql_find, /* find function */ + .close = NULL, /* no close function */ + .tidy = pgsql_tidy, /* tidy function */ + .quote = pgsql_quote, /* quoting function */ + .version_report = pgsql_version_report /* version reporting */ }; #ifdef DYNLOOKUP