2004-09-30 Marcus Brinkmann <marcus@g10code.de>

* data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not
	read, to improve debug output.
This commit is contained in:
Marcus Brinkmann 2004-09-30 00:19:22 +00:00
parent b6852571b3
commit a2d38f6824
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-09-30 Marcus Brinkmann <marcus@g10code.de>
* data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not
read, to improve debug output.
2004-09-29 Marcus Brinkmann <marcus@g10code.de>
* gpgme.h (GPGME_IMPORT_NEW, GPGME_IMPORT_UID, GPGME_IMPORT_SIG,

View File

@ -177,7 +177,7 @@ _gpgme_data_inbound_handler (void *opaque, int fd)
char *bufp = buffer;
ssize_t buflen;
buflen = read (fd, buffer, BUFFER_SIZE);
buflen = _gpgme_io_read (fd, buffer, BUFFER_SIZE);
if (buflen < 0)
return gpg_error_from_errno (errno);
if (buflen == 0)