X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=nss%2Fpw.c;h=78a252f6db5a41edc02aead332670191eaa31ec7;hp=c612026aa132a96cd7a6a303016e7bc7a27d5ad3;hb=5b9652f1dff167791209584273e181f932ea93b5;hpb=17ade439a85c9cb0074978bb8df873c7ec993b41 diff --git a/nss/pw.c b/nss/pw.c index c612026..78a252f 100644 --- a/nss/pw.c +++ b/nss/pw.c @@ -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);