From 52513a4d523ec52877385b8cd02ce6627f8f783f Mon Sep 17 00:00:00 2001 From: trasz Date: Tue, 14 Apr 2009 11:39:56 +0000 Subject: 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. --- lib/libc/string/strmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/string/strmode.c') 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'; } -- cgit v1.1