Bug#326564: manpages-dev: readv(3)/writev(3) description is confusing

2005-11-27 Thread Florian Ernst
On Thu, 15 Sep 2005 14:21:26 +0200, Michael Kerrisk wrote:
  Manpage  states that Buffers  are processed  in the  order vector[0],
  vector[1], ...  vector[count]., but  processing will actually stop at
  vector[count - 1].
  
  Attached two patches, don't know which one is better.
 
 Salut Maxime,
 
 I'm the upstream man-pages maintainer (i.e., I'm not part of Debian).
 I guess that readv.3 is something that Debian supplies extra
 to the man-pages set.  In my set, readv is actually in Section
 2 (i.e., readv.2), and does not have this error.

The version Debian currently ships as readv.3 is actually the upstream
readv.3 as it was present until 1.48, as also the infodrom cvs status
suggests.
readv.2 appears to be an updated version of this old readv.3, so I
guess this bug can be fixed by simply dropping readv.3 and writev.3
from the diff.gz.

HTH,
Flo


signature.asc
Description: Digital signature


Bug#326564: manpages-dev: readv(3)/writev(3) description is confusing

2005-09-15 Thread Michael Kerrisk
 Manpage  states that Buffers  are processed  in the  order vector[0],
 vector[1], ...  vector[count]., but  processing will actually stop at
 vector[count - 1].
 
 Attached two patches, don't know which one is better.

Salut Maxime,

I'm the upstream man-pages maintainer (i.e., I'm not part of Debian).
I guess that readv.3 is something that Debian supplies extra
to the man-pages set.  In my set, readv is actually in Section
2 (i.e., readv.2), and does not have this error.

Cheers,

Michael

-- 
Michael Kerrisk
maintainer of Linux man pages Sections 2, 3, 4, 5, and 7 

Want to help with man page maintenance?  Grab the latest
tarball at ftp://ftp.win.tue.nl/pub/linux-local/manpages/
and grep the source files for 'FIXME'.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#326564: manpages-dev: readv(3)/writev(3) description is confusing

2005-09-03 Thread Maxime Bizon
Package: manpages-dev
Version: 2.02-2
Severity: normal
Tags: patch


Manpage  states that Buffers  are processed  in the  order vector[0],
vector[1], ...  vector[count]., but  processing will actually stop at
vector[count - 1].

Attached two patches, don't know which one is better.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages manpages-dev depends on:
ii  manpages  2.02-2 Manual pages about using a GNU/Lin

manpages-dev recommends no packages.

-- no debconf information
--- readv.3.orig2005-09-04 04:29:15.0 +0200
+++ readv.3 2005-09-04 04:29:38.0 +0200
@@ -73,7 +73,7 @@
 .fi
 .PP
 Buffers are processed in the order
-.IR vector[0] ,  vector[1] , ...  vector[count] .
+.IR vector[0] ,  vector[1] , ...  vector[count - 1] .
 .PP
 The
 .B readv()
--- readv.3.orig2005-09-04 04:29:15.0 +0200
+++ readv.3 2005-09-04 04:33:45.0 +0200
@@ -72,8 +72,7 @@
 };
 .fi
 .PP
-Buffers are processed in the order
-.IR vector[0] ,  vector[1] , ...  vector[count] .
+Buffers are processed in the order specified.
 .PP
 The
 .B readv()