From ae39cf8f7919263965a46232a510e5f690daa146 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sun, 18 Mar 2007 06:20:17 +0000 Subject: [PATCH] Fix inconsistent argument names in SYNOPSIS and DESCRIPTION. --- man2/splice.2 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/man2/splice.2 b/man2/splice.2 index 8719f97fd..fd1876228 100644 --- a/man2/splice.2 +++ b/man2/splice.2 @@ -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