Fix inconsistent argument names in SYNOPSIS and DESCRIPTION.

This commit is contained in:
Michael Kerrisk 2007-03-18 06:20:17 +00:00
parent 33e820cb39
commit ae39cf8f79
1 changed files with 11 additions and 11 deletions

View File

@ -48,34 +48,34 @@ to the file descriptor
where one of the descriptors must refer to a pipe.
If
.I in_fd
.I fd_in
refers to a pipe, then
.I in_off
.I off_in
must be NULL.
If
.I in_fd
.I fd_in
does not refer to a pipe and
.I in_off
.I off_in
is NULL, then bytes are read from
.I in_fd
.I fd_in
starting from the current file offset,
and the current file offset is adjusted appropriately.
If
.I in_fd
.I fd_in
does not refer to a pipe and
.I in_off
.I off_in
is not NULL, then
.I in_off
.I off_in
must point to a buffer which specifies the starting
offset from which bytes will be read from
.IR in_fd ;
.IR fd_in ;
in this case, the current file offset of
.IR in_fd
.IR fd_in
is not changed.
Analogous statements apply for
.I out_fd
and
.IR out_off .
.IR off_out .
The
.I flags