[svn] gpgme - r1186 - trunk/doc

svn author mo cvs at cvs.gnupg.org
Wed Nov 1 11:02:13 CET 2006


Author: mo
Date: 2006-11-01 11:02:12 +0100 (Wed, 01 Nov 2006)
New Revision: 1186

Modified:
   trunk/doc/ChangeLog
   trunk/doc/gpgme.texi
Log:
2006-11-01  Moritz Schulte  <moritz at g10code.com>

	* gpgme.texi (Data Buffer I/O Operations): Fixed entry for
	gpgme_data_seek: OFFSET is not a pointer; some s/whence/offset/.


Modified: trunk/doc/ChangeLog
===================================================================
--- trunk/doc/ChangeLog	2006-10-24 09:22:33 UTC (rev 1185)
+++ trunk/doc/ChangeLog	2006-11-01 10:02:12 UTC (rev 1186)
@@ -1,3 +1,8 @@
+2006-11-01  Moritz Schulte  <moritz at g10code.com>
+
+	* gpgme.texi (Data Buffer I/O Operations): Fixed entry for
+	gpgme_data_seek: OFFSET is not a pointer; some s/whence/offset/.
+
 2006-09-25  Marcus Brinkmann  <marcus at g10code.de>
 
 	* gpgme.texi (Destroying Data Buffers): Clarify that

Modified: trunk/doc/gpgme.texi
===================================================================
--- trunk/doc/gpgme.texi	2006-10-24 09:22:33 UTC (rev 1185)
+++ trunk/doc/gpgme.texi	2006-11-01 10:02:12 UTC (rev 1186)
@@ -1773,7 +1773,7 @@
 error occurs.  If an error occurs, @var{errno} is set.
 @end deftypefun
 
- at deftypefun off_t gpgme_data_seek (@w{gpgme_data_t @var{dh}}, @w{off_t *@var{offset}}, @w{int @var{whence}})
+ at deftypefun off_t gpgme_data_seek (@w{gpgme_data_t @var{dh}}, @w{off_t @var{offset}}, @w{int @var{whence}})
 The function @code{gpgme_data_seek} changes the current read/write
 position.
 
@@ -1782,15 +1782,15 @@
 
 @table @code
 @item SEEK_SET
-Specifies that @var{whence} is a count of characters from the
+Specifies that @var{offset} is a count of characters from the
 beginning of the data object.
 
 @item SEEK_CUR
-Specifies that @var{whence} is a count of characters from the current
+Specifies that @var{offset} is a count of characters from the current
 file position.  This count may be positive or negative.
 
 @item SEEK_END
-Specifies that @var{whence} is a count of characters from the end of
+Specifies that @var{offset} is a count of characters from the end of
 the data object.  A negative count specifies a position within the
 current extent of the data object; a positive count specifies a
 position past the current end.  If you set the position past the




More information about the Gnupg-commits mailing list