summaryrefslogtreecommitdiff
path: root/nscd/grpcache.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-09-16 18:29:58 +0000
committerUlrich Drepper <drepper@redhat.com>1998-09-16 18:29:58 +0000
commitd8f2b9ea8cf4fb6d043f2dbbeaaca04d4fd70fc6 (patch)
treec4d851a3e692dfcd7a358a14ef190818dd7ef744 /nscd/grpcache.c
parent9c4c002459bd2665ac1ad544e56952ec7797e8dd (diff)
Update.
1998-09-16 Ulrich Drepper <drepper@cygnus.com> * nscd/grpcache.c (save_grp): Partly undo last change. * nscd/pwdcache.c (save_pwd): Undo last change.
Diffstat (limited to 'nscd/grpcache.c')
-rw-r--r--nscd/grpcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nscd/grpcache.c b/nscd/grpcache.c
index beffa1e4a8..f34780ac4e 100644
--- a/nscd/grpcache.c
+++ b/nscd/grpcache.c
@@ -152,9 +152,9 @@ save_grp (struct group *src)
cp = (char *) (dest->gr_mem + l + 1);
dest->gr_name = cp;
- cp = mempcpy (cp, src->gr_name, name_len) + 1;
+ cp = mempcpy (cp, src->gr_name, name_len);
dest->gr_passwd = cp;
- cp = mempcpy (cp, src->gr_passwd, passwd_len) + 1;
+ cp = mempcpy (cp, src->gr_passwd, passwd_len);
dest->gr_gid = src->gr_gid;
l = 0;