summaryrefslogtreecommitdiff
path: root/nscd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-17 18:30:37 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-17 18:30:37 +0000
commit7bfee6767d5d38c957de95c025e95fe6c5a05433 (patch)
tree32560c714cc463f7cc9f0568d3d68bdbb2bd1b67 /nscd
parent4ae1869356ec212162cec5fac5a995c134fbd2c0 (diff)
Restore correct UID.
Diffstat (limited to 'nscd')
-rw-r--r--nscd/hstcache.c2
-rw-r--r--nscd/pwdcache.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nscd/hstcache.c b/nscd/hstcache.c
index 253b76c65d..31afbdddda 100644
--- a/nscd/hstcache.c
+++ b/nscd/hstcache.c
@@ -315,7 +315,7 @@ addhstbyname (struct database *db, int fd, request_header *req,
}
if (secure[hstdb])
- seteuid (uid);
+ seteuid (oldeuid);
cache_addhst (db, fd, req, key, hst, uid);
}
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c
index 2e54a773ff..32da08ee03 100644
--- a/nscd/pwdcache.c
+++ b/nscd/pwdcache.c
@@ -224,7 +224,7 @@ addpwbyname (struct database *db, int fd, request_header *req,
}
if (secure[pwddb])
- seteuid (c_uid);
+ seteuid (oldeuid);
cache_addpw (db, fd, req, key, pwd, c_uid);
}