Minor changes

This commit is contained in:
Michael Kerrisk 2006-04-06 05:18:28 +00:00
parent 64603adfb7
commit e7b0c1f1d7
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,7 @@
.\"
.TH MKFIFOAT 3 2006-04-06 "Linux 2.6.16" "Linux Programmer's Manual"
.SH NAME
mkfifoat \- create a directory at a relative location
mkfifoat \- make a FIFO (named pipe) relative to a directory file descriptor
.SH SYNOPSIS
.nf
.B #include <sys/stat.h>
@ -86,6 +86,8 @@ The following additional errors can occur for
is not a valid file descriptor.
.TP
.B ENOTDIR
.I pathname
is a relative path and
.I dirfd
is a file descriptor referring to a file other than a directory.
.SH NOTES