X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/55414b25bee9f0195ccd1e47f3d3b5cba766e099..a85c067ba6c6940512cf57ec213277a370d87e70:/src/src/lookups/passwd.c diff --git a/src/src/lookups/passwd.c b/src/src/lookups/passwd.c index c9986da98..7df1a5aaf 100644 --- a/src/src/lookups/passwd.c +++ b/src/src/lookups/passwd.c @@ -2,8 +2,10 @@ * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2009 */ +/* Copyright (c) The Exim Maintainers 2020 - 2022 */ +/* Copyright (c) University of Cambridge 1995 - 2015 */ /* See the file NOTICE for conditions of use and distribution. */ +/* SPDX-License-Identifier: GPL-2.0-only */ #include "../exim.h" @@ -16,10 +18,8 @@ /* See local README for interface description */ static void * -passwd_open(uschar *filename, uschar **errmsg) +passwd_open(const uschar * filename, uschar ** errmsg) { -filename = filename; /* Keep picky compilers happy */ -errmsg = errmsg; return (void *)(-1); /* Just return something non-null */ } @@ -33,17 +33,12 @@ return (void *)(-1); /* Just return something non-null */ /* See local README for interface description */ static int -passwd_find(void *handle, uschar *filename, const uschar *keystring, int length, - uschar **result, uschar **errmsg, BOOL *do_cache) +passwd_find(void * handle, const uschar * filename, const uschar * keystring, + int length, uschar ** result, uschar ** errmsg, uint * do_cache, + const uschar * opts) { struct passwd *pw; -handle = handle; /* Keep picky compilers happy */ -filename = filename; -length = length; -errmsg = errmsg; -do_cache = do_cache; - if (!route_finduser(keystring, &pw, NULL)) return FAIL; *result = string_sprintf("*:%d:%d:%s:%s:%s", (int)pw->pw_uid, (int)pw->pw_gid, pw->pw_gecos, pw->pw_dir, pw->pw_shell); @@ -60,24 +55,25 @@ return OK; #include "../version.h" -void -passwd_version_report(FILE *f) +gstring * +passwd_version_report(gstring * g) { #ifdef DYNLOOKUP -fprintf(f, "Library version: passwd: Exim version %s\n", EXIM_VERSION_STR); +g = string_fmt_append(g, "Library version: passwd: Exim version %s\n", EXIM_VERSION_STR); #endif +return g; } static lookup_info _lookup_info = { - US"passwd", /* lookup name */ - lookup_querystyle, /* query-style lookup */ - passwd_open, /* open function */ - NULL, /* no check function */ - passwd_find, /* find function */ - NULL, /* no close function */ - NULL, /* no tidy function */ - NULL, /* no quoting function */ - passwd_version_report /* version reporting */ + .name = US"passwd", /* lookup name */ + .type = lookup_querystyle, /* query-style lookup */ + .open = passwd_open, /* open function */ + .check = NULL, /* no check function */ + .find = passwd_find, /* find function */ + .close = NULL, /* no close function */ + .tidy = NULL, /* no tidy function */ + .quote = NULL, /* no quoting function */ + .version_report = passwd_version_report /* version reporting */ }; #ifdef DYNLOOKUP