From bca0f3e275cfaf2697baf1ea18e3dc539dadddff Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Thu, 6 Aug 2020 03:16:33 -0700 Subject: [PATCH] sys/stat:Make comment match code --- include/sys/stat.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/sys/stat.h b/include/sys/stat.h index 6ee05eb8c3a..2939189598b 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -38,14 +38,13 @@ * that the full size of a mode_t is 16-bits. (However, mode_t must be size * 'int' because it is promoted to size int when passed in varargs). * - * LTTT ...U UUGG GOOO + * TTTT ...U UUGG GOOO * * Bits 0-2: Permissions for others * Bits 3-5: Group permissions * Bits 6-8: Owner permissions - * Bits 9-10: Not used - * Bits 11-14: File type bits - * Bit 15: Symbolic link + * Bits 9-11: Not used + * Bits 12-15: File type bits */ #define S_IXOTH (1 << 0) /* Bits 0-2: Permissions for others: RWX */