mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 12:04:08 +00:00
coda: Fix typo in the struct CodaCred documentation
Documentation mistakenly refers to a different type while explaining the contents of the struct CodaCred. Fix the typo in the struct CodaCred description in the documentation. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
38a449ff53
commit
c6e0396124
1 changed files with 2 additions and 2 deletions
|
@ -421,14 +421,14 @@ kernel support.
|
||||||
|
|
||||||
|
|
||||||
The CodaCred structure defines a variety of user and group ids as
|
The CodaCred structure defines a variety of user and group ids as
|
||||||
they are set for the calling process. The vuid_t and guid_t are 32 bit
|
they are set for the calling process. The vuid_t and vgid_t are 32 bit
|
||||||
unsigned integers. It also defines group membership in an array. On
|
unsigned integers. It also defines group membership in an array. On
|
||||||
Unix the CodaCred has proven sufficient to implement good security
|
Unix the CodaCred has proven sufficient to implement good security
|
||||||
semantics for Coda but the structure may have to undergo modification
|
semantics for Coda but the structure may have to undergo modification
|
||||||
for the Windows environment when these mature.
|
for the Windows environment when these mature.
|
||||||
|
|
||||||
struct CodaCred {
|
struct CodaCred {
|
||||||
vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, effective, set, fs uid*/
|
vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, effective, set, fs uid */
|
||||||
vgid_t cr_gid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */
|
vgid_t cr_gid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */
|
||||||
vgid_t cr_groups[NGROUPS]; /* Group membership for caller */
|
vgid_t cr_groups[NGROUPS]; /* Group membership for caller */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue