X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/9f4001740f061f29c65835c6f7efcab50c27db13..1923663b12d44ff1bbf527a5b145a74fb5a751b7:/src/src/lookups/passwd.c diff --git a/src/src/lookups/passwd.c b/src/src/lookups/passwd.c index 0a4a7b4e7..f37bc6a0a 100644 --- a/src/src/lookups/passwd.c +++ b/src/src/lookups/passwd.c @@ -3,6 +3,7 @@ *************************************************/ /* Copyright (c) University of Cambridge 1995 - 2015 */ +/* Copyright (c) The Exim Maintainers 2020 - 2021 */ /* See the file NOTICE for conditions of use and distribution. */ #include "../exim.h" @@ -18,8 +19,6 @@ static void * passwd_open(const uschar * filename, uschar ** errmsg) { -filename = filename; /* Keep picky compilers happy */ -errmsg = errmsg; return (void *)(-1); /* Just return something non-null */ } @@ -39,12 +38,6 @@ passwd_find(void * handle, const uschar * filename, const uschar * keystring, { 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);