diff options
-rw-r--r-- | lib/libc/string/strmode.3 | 4 | ||||
-rw-r--r-- | lib/libc/string/strmode.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/string/strmode.3 b/lib/libc/string/strmode.3 index 89d0160..1a072d8 100644 --- a/lib/libc/string/strmode.3 +++ b/lib/libc/string/strmode.3 @@ -128,9 +128,7 @@ The file is executable or the directory is searchable. None of the above apply. .El .Pp -The last character is a plus sign ``+'' if any there are any alternate -or additional access control methods associated with the inode, otherwise -it will be a space. +The last character will always be a space. .Sh SEE ALSO .Xr chmod 1 , .Xr find 1 , diff --git a/lib/libc/string/strmode.c b/lib/libc/string/strmode.c index 57295d7..3aaa77e 100644 --- a/lib/libc/string/strmode.c +++ b/lib/libc/string/strmode.c @@ -143,6 +143,6 @@ strmode(/* mode_t */ int mode, char *p) *p++ = 't'; break; } - *p++ = ' '; /* will be a '+' if ACL's implemented */ + *p++ = ' '; *p = '\0'; } |