gpgme/gpgme-1.0.2-macro.patch

12 lines
359 B
Diff
Raw Normal View History

2005-03-18 11:15:55 +00:00
--- gpgme/ath-compat.c~ 2004-12-07 23:11:52.000000000 +0200
+++ gpgme/ath-compat.c 2005-03-18 12:54:44.000000000 +0200
@@ -108,7 +108,7 @@
ath_read (int fd, void *buf, size_t nbytes)
{
if (ath_ops && ath_ops->read)
- return ath_ops->read (fd, buf, nbytes);
+ return (ath_ops->read) (fd, buf, nbytes);
else
return read (fd, buf, nbytes);
}