diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-09-15 08:04:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-09-15 08:04:19 +0000 |
commit | 6beaac4da9692dbf24e86f6fd8fca4bbd6ccb90b (patch) | |
tree | 1250de9a2392b945e856bc232c39ed70333793be /nscd/grpcache.c | |
parent | 0ff0d59e19b1a7db39f6d4e897a8bde0583a7c47 (diff) | |
download | glibc-6beaac4da9692dbf24e86f6fd8fca4bbd6ccb90b.tar.gz glibc-6beaac4da9692dbf24e86f6fd8fca4bbd6ccb90b.tar.xz glibc-6beaac4da9692dbf24e86f6fd8fca4bbd6ccb90b.zip |
Update.
1998-09-15 08:00 Ulrich Drepper <drepper@cygnus.com> * nscd/pwdcache.c (save_pwd): Correct copying. * nscd/grpcache.c (save_grp): Likewise.
Diffstat (limited to 'nscd/grpcache.c')
-rw-r--r-- | nscd/grpcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nscd/grpcache.c b/nscd/grpcache.c index a5130075ad..beffa1e4a8 100644 --- a/nscd/grpcache.c +++ b/nscd/grpcache.c @@ -152,16 +152,16 @@ save_grp (struct group *src) cp = (char *) (dest->gr_mem + l + 1); dest->gr_name = cp; - cp = mempcpy (cp, src->gr_name, name_len); + cp = mempcpy (cp, src->gr_name, name_len) + 1; dest->gr_passwd = cp; - cp = mempcpy (cp, src->gr_passwd, passwd_len); + cp = mempcpy (cp, src->gr_passwd, passwd_len) + 1; dest->gr_gid = src->gr_gid; l = 0; while (src->gr_mem[l] != NULL) { dest->gr_mem[l] = cp; - cp = stpcpy (cp, src->gr_mem[l]); + cp = stpcpy (cp, src->gr_mem[l]) + 1; ++l; } dest->gr_mem[l] = NULL; |