]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
libafs: revert init req to use the real uid
authorMichael Meffie <mmeffie@sinenomine.net>
Thu, 2 Aug 2012 21:24:02 +0000 (17:24 -0400)
committerDerrick Brashear <shadow@dementix.org>
Thu, 30 Aug 2012 12:03:02 +0000 (05:03 -0700)
The commit to use wrappers for creditial structure access
inadvertently changed the user id to be the effective uid instead of
the real uid, when no PAG is present, on linux.  Revert this so
setuid programs continue to work.

See commit eb8e55bba7740a87e07ef07bb4b789e6d4e36f0d

Change-Id: I5d42b8caf90a042192ed39f26e55d70c9531f2e9
Reviewed-on: http://gerrit.openafs.org/7931
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>
(cherry picked from commit 1a1e87dcdf972519cd21970f7c78709e40f8e1e9)
Reviewed-on: http://gerrit.openafs.org/7990

src/afs/afs_osi_pag.c

index 20cee62a9e2c65b43ae502b46e2038471903374d..efce229ac4855d1a72201c604fcaf247fd8c4534 100644 (file)
@@ -481,7 +481,7 @@ afs_InitReq(struct vrequest *av, afs_ucred_t *acred)
 #elif defined(AFS_SUN510_ENV)
         av->uid = crgetruid(acred);
 #else
-       av->uid = afs_cr_uid(acred);    /* default when no pag is set */
+       av->uid = afs_cr_ruid(acred);   /* default when no pag is set */
 #endif
     }
     return 0;