summaryrefslogtreecommitdiff
path: root/build/spec.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 /build/spec.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 'build/spec.c')
-rw-r--r--build/spec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/spec.c b/build/spec.c
index 2bfce9c59..2e9270f16 100644
--- a/build/spec.c
+++ b/build/spec.c
@@ -519,7 +519,7 @@ void freeSpec(/*@only@*/ Spec spec)
struct OpenFileInfo *ofi;
ofi = xmalloc(sizeof(struct OpenFileInfo));
- ofi->file = NULL;
+ ofi->fd = NULL;
ofi->fileName = NULL;
ofi->lineNum = 0;
ofi->readBuf[0] = '\0';