diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2008-10-29 14:09:27 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2008-10-30 13:47:40 +0200 |
commit | f01ed5459deb3b3cf5c1bd4077f89b02533071f0 (patch) | |
tree | 92cd2066c28a8e03e5917c1a71867f43d3ab9f8e /build | |
parent | 8f41e940abe6950c807f530468adeb24049271ca (diff) | |
download | rpm-f01ed5459deb3b3cf5c1bd4077f89b02533071f0.tar.gz rpm-f01ed5459deb3b3cf5c1bd4077f89b02533071f0.tar.bz2 rpm-f01ed5459deb3b3cf5c1bd4077f89b02533071f0.zip |
Convert in-tree users of rpmfiNew() to use flag names
- easier to grep for than scareMem, preparing for further flags
Diffstat (limited to 'build')
-rw-r--r-- | build/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/files.c b/build/files.c index 433bc151e..7fb7e0478 100644 --- a/build/files.c +++ b/build/files.c @@ -1249,7 +1249,7 @@ static void genCpioListAndHeader(FileList fl, { rpmts ts = NULL; /* XXX FIXME drill rpmts ts all the way down here */ - rpmfi fi = rpmfiNew(ts, h, RPMTAG_BASENAMES, 0); + rpmfi fi = rpmfiNew(ts, h, RPMTAG_BASENAMES, RPMFI_NOHEADER); char * a, * d; fi->te = xcalloc(1, sizeof(*fi->te)); |