]> ruderich.org/simon Gitweb - nsscash/nsscash.git/blobdiff - nss/gr.c
Update copyright years
[nsscash/nsscash.git] / nss / gr.c
index 48e3a1b6f2548bca4e8623d21b3877efd853da53..e0e8873df9e6cbdf24bab735e261d0d2fa46b322 100644 (file)
--- 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);