X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=nss%2Fpw.c;h=0736c40699511aa9dc27a3219f7949fa38327fe5;hb=278c50be3d8a8c433aa862d602492112b9f26a67;hp=c612026aa132a96cd7a6a303016e7bc7a27d5ad3;hpb=17ade439a85c9cb0074978bb8df873c7ec993b41;p=nsscash%2Fnsscash.git diff --git a/nss/pw.c b/nss/pw.c index c612026..0736c40 100644 --- a/nss/pw.c +++ b/nss/pw.c @@ -1,7 +1,7 @@ /* * Handle passwd entries via struct passwd * - * Copyright (C) 2019 Simon Ruderich + * Copyright (C) 2019-2021 Simon Ruderich * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -163,9 +163,8 @@ static enum nss_status internal_getpw(struct search_key *key, struct passwd *res } enum nss_status _nss_cash_getpwuid_r(uid_t uid, struct passwd *result, char *buffer, size_t buflen, int *errnop) { - uint64_t id = (uint64_t)uid; struct search_key key = { - .id = &id, + .id = (uint64_t)uid, .offset = offsetof(struct passwd_entry, uid), }; return internal_getpw(&key, result, buffer, buflen, errnop);