X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=nss%2Fgr.c;h=e0e8873df9e6cbdf24bab735e261d0d2fa46b322;hb=1002c514a8530bb6608c556b4446e853be390917;hp=48e3a1b6f2548bca4e8623d21b3877efd853da53;hpb=17ade439a85c9cb0074978bb8df873c7ec993b41;p=nsscash%2Fnsscash.git diff --git a/nss/gr.c b/nss/gr.c index 48e3a1b..e0e8873 100644 --- a/nss/gr.c +++ b/nss/gr.c @@ -1,7 +1,7 @@ /* * Handle group entries via struct group * - * Copyright (C) 2019 Simon Ruderich + * Copyright (C) 2019-2020 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 @@ -180,9 +180,8 @@ static enum nss_status internal_getgr(struct search_key *key, struct group *resu } enum nss_status _nss_cash_getgrgid_r(gid_t gid, struct group *result, char *buffer, size_t buflen, int *errnop) { - uint64_t id = (uint64_t)gid; struct search_key key = { - .id = &id, + .id = (uint64_t)gid, .offset = offsetof(struct group_entry, gid), }; return internal_getgr(&key, result, buffer, buflen, errnop);