diff options
author | jbj <devnull@localhost> | 1999-11-04 21:26:08 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-11-04 21:26:08 +0000 |
commit | 3363604c7076329e431afdc975f205b54f088631 (patch) | |
tree | b39815fa976ba8ac3540002db1fafcdfa0d3a75f /build.c | |
parent | 94dd9f796e8c8fa7b59e9690d8d0cf476313e5a5 (diff) | |
download | rpm-3363604c7076329e431afdc975f205b54f088631.tar.gz rpm-3363604c7076329e431afdc975f205b54f088631.tar.bz2 rpm-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 'build.c')
-rw-r--r-- | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ static int isSpecFile(const char *specfile) int count; int checking; - fd = ufdio->open(specfile, O_RDONLY, 0); + fd = Fopen(specfile, "r.ufdio"); if (Ferror(fd)) { /* XXX Fstrerror */ fprintf(stderr, _("Unable to open spec file: %s\n"), specfile); |