From: Marcus Brinkmann Date: Thu, 30 Sep 2004 00:19:22 +0000 (+0000) Subject: 2004-09-30 Marcus Brinkmann X-Git-Tag: gpgme-1-0-0~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a2d38f6824c79eeb906e02266a51e233502ce684;p=gpgme.git 2004-09-30 Marcus Brinkmann * data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not read, to improve debug output. --- diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 1ffffd2..62bb588 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,8 @@ +2004-09-30 Marcus Brinkmann + + * data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not + read, to improve debug output. + 2004-09-29 Marcus Brinkmann * gpgme.h (GPGME_IMPORT_NEW, GPGME_IMPORT_UID, GPGME_IMPORT_SIG, diff --git a/gpgme/data.c b/gpgme/data.c index e4e13a3..c30e6ec 100644 --- a/gpgme/data.c +++ b/gpgme/data.c @@ -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)