summaryrefslogtreecommitdiff
path: root/lib/rpmlead.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1999-11-04 21:26:08 +0000
committerjbj <devnull@localhost>1999-11-04 21:26:08 +0000
commit3363604c7076329e431afdc975f205b54f088631 (patch)
treeb39815fa976ba8ac3540002db1fafcdfa0d3a75f /lib/rpmlead.c
parent94dd9f796e8c8fa7b59e9690d8d0cf476313e5a5 (diff)
downloadlibrpm-tizen-3363604c7076329e431afdc975f205b54f088631.tar.gz
librpm-tizen-3363604c7076329e431afdc975f205b54f088631.tar.bz2
librpm-tizen-3363604c7076329e431afdc975f205b54f088631.zip
Use Fopen almost everywhere.
Rip out --enable-bzip2-payload, we'll use Fopen w macros instead. Work out ref counting for ftpControl so that control channel is persistent. build/build.c: Use fpio to write build stage script. parseSpec.c: Rework include stack to use FD_t, not FILE *. tread.c: Delete, use ufdio->read instead. rpmio.c: Filter out fdio fd == NULL assertion failures. rpmrc.c: Don't fail if HOME is not environment. rpmrc.c: Rework ufdio FTP rcfile I/O to be more similar to stdio. CVS patchset: 3417 CVS date: 1999/11/04 21:26:08
Diffstat (limited to 'lib/rpmlead.c')
-rw-r--r--lib/rpmlead.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmlead.c b/lib/rpmlead.c
index 574577f6c..e1a970679 100644
--- a/lib/rpmlead.c
+++ b/lib/rpmlead.c
@@ -44,7 +44,7 @@ int writeLead(FD_t fd, struct rpmlead *lead)
int readLead(FD_t fd, struct rpmlead *lead)
{
- if (timedRead(fd, lead, sizeof(*lead)) != sizeof(*lead)) {
+ if (timedRead(fd, (char *)lead, sizeof(*lead)) != sizeof(*lead)) {
rpmError(RPMERR_READERROR, _("read failed: %s (%d)"), strerror(errno),
errno);
return 1;