2006-11-01 Moritz Schulte <moritz@g10code.com>
authorMoritz Schulte <mo@g10code.com>
Wed, 1 Nov 2006 10:02:12 +0000 (10:02 +0000)
committerMoritz Schulte <mo@g10code.com>
Wed, 1 Nov 2006 10:02:12 +0000 (10:02 +0000)
* gpgme.texi (Data Buffer I/O Operations): Fixed entry for
gpgme_data_seek: OFFSET is not a pointer; some s/whence/offset/.

trunk/doc/ChangeLog
trunk/doc/gpgme.texi

index 759c2891b62f9b0bc666f20d34f364783e6ae1d4..6ff31d6031db252d7d95458ff2db32e3dc6e79cc 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-01  Moritz Schulte  <moritz@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@g10code.de>
 
        * gpgme.texi (Destroying Data Buffers): Clarify that
index 04deff313cb55ebf6ac1bdb97580a4388b7d22fe..c9aebeac6c8ab72683f1efe11d4c5937b7304113 100644 (file)
@@ -1773,7 +1773,7 @@ The function returns the number of bytes actually written, or -1 if an
 error occurs.  If an error occurs, @var{errno} is set.
 @end deftypefun
 
-@deftypefun off_t gpgme_data_seek (@w{gpgme_data_t @var{dh}}, @w{off_t *@var{offset}}, @w{int @var{whence}})
+@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 @@ interpreted.  It must be one of the following symbolic constants:
 
 @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