summaryrefslogtreecommitdiffstats
path: root/lib/libc/string/strmode.c
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2009-04-14 11:39:56 +0000
committertrasz <trasz@FreeBSD.org>2009-04-14 11:39:56 +0000
commit52513a4d523ec52877385b8cd02ce6627f8f783f (patch)
tree46b6df3be425066e79451757d9e4d5287f753b14 /lib/libc/string/strmode.c
parent0affa44e9d21bed574cda52d5c15f3d2d0fb0361 (diff)
downloadFreeBSD-src-52513a4d523ec52877385b8cd02ce6627f8f783f.zip
FreeBSD-src-52513a4d523ec52877385b8cd02ce6627f8f783f.tar.gz
There is no way for strmode(3) to append '+' if the file has ACL,
because there is no way to figure that out based on the file mode itself. Make the manual page match reality.
Diffstat (limited to 'lib/libc/string/strmode.c')
-rw-r--r--lib/libc/string/strmode.c2
1 files changed, 1 insertions, 1 deletions
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';
}
OpenPOWER on IntegriCloud