diff options
Diffstat (limited to 'lib/libc/sys/mkdir.2')
-rw-r--r-- | lib/libc/sys/mkdir.2 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/sys/mkdir.2 b/lib/libc/sys/mkdir.2 index 4bf11be..1dc6ef5 100644 --- a/lib/libc/sys/mkdir.2 +++ b/lib/libc/sys/mkdir.2 @@ -30,6 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)mkdir.2 8.2 (Berkeley) 12/11/93 +.\" $Id$ .\" .Dd December 11, 1993 .Dt MKDIR 2 @@ -46,7 +47,7 @@ The directory .Fa path is created with the access permissions specified by .Fa mode -and restricted by the the +and restricted by the .Xr umask 2 of the calling process. .Pp @@ -63,8 +64,6 @@ will fail and no directory will be created if: .Bl -tag -width ENAMETOOLO .It Bq Er ENOTDIR A component of the path prefix is not a directory. -.It Bq Er EINVAL -The pathname contains a character with the high-order bit set. .It Bq Er ENAMETOOLONG A component of a pathname exceeded 255 characters, or an entire path name exceeded 1023 characters. @@ -108,6 +107,7 @@ points outside the process's allocated address space. .Xr stat 2 , .Xr umask 2 .Sh STANDARDS -.Fn Mkdir -conforms to IEEE Std 1003.1-1988 -.Pq Dq Tn POSIX . +The +.Fn mkdir +function call is expected to conform to +.St -p1003.1-90 . |