summaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2019-07-23 12:57:50 -0400
committerJonathan Corbet <corbet@lwn.net>2019-07-30 16:19:41 -0400
commitc6e0396124de72d6ab7f8c8e01af7f79ee1aa698 (patch)
treed9a2d776d270581a64cdfbf55f886e79216cbb57 /Documentation/filesystems
parent38a449ff533c9a21c254473a9f0cf59b6f420f50 (diff)
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>
Diffstat (limited to 'Documentation/filesystems')
-rw-r--r--Documentation/filesystems/coda.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/coda.txt b/Documentation/filesystems/coda.txt
index 545262c167c3..1711ad48e38a 100644
--- a/Documentation/filesystems/coda.txt
+++ b/Documentation/filesystems/coda.txt
@@ -421,14 +421,14 @@ kernel support.
421 421
422 422
423 The CodaCred structure defines a variety of user and group ids as 423 The CodaCred structure defines a variety of user and group ids as
424 they are set for the calling process. The vuid_t and guid_t are 32 bit 424 they are set for the calling process. The vuid_t and vgid_t are 32 bit
425 unsigned integers. It also defines group membership in an array. On 425 unsigned integers. It also defines group membership in an array. On
426 Unix the CodaCred has proven sufficient to implement good security 426 Unix the CodaCred has proven sufficient to implement good security
427 semantics for Coda but the structure may have to undergo modification 427 semantics for Coda but the structure may have to undergo modification
428 for the Windows environment when these mature. 428 for the Windows environment when these mature.
429 429
430 struct CodaCred { 430 struct CodaCred {
431 vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, effective, set, fs uid*/ 431 vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, effective, set, fs uid */
432 vgid_t cr_gid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */ 432 vgid_t cr_gid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */
433 vgid_t cr_groups[NGROUPS]; /* Group membership for caller */ 433 vgid_t cr_groups[NGROUPS]; /* Group membership for caller */
434 }; 434 };