uid. [krb5-libs/366]
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10027
dc483132-0cff-0310-8789-
dd5450dbe970
+Tue Mar 25 01:15:39 1997 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * rc_io.c (krb5_rc_io_open): rcache owner should be checked against
+ the effective uid, not the real uid. [krb5-libs/366]
+
Sat Feb 22 22:44:15 1997 Richard Basch <basch@lehman.com>
* Makefile.in: Use some of the new library list build rules in
if ((d->fd = stat(d->fn, &statb)) != -1) {
uid_t me;
- me = getuid();
+ me = geteuid();
/* must be owned by this user, to prevent some security problems with
* other users modifying replay cache stufff */
if ((statb.st_uid != me) || ((statb.st_mode & S_IFMT) != S_IFREG)) {