diff options
author | jbj <devnull@localhost> | 2001-11-11 12:47:08 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-11-11 12:47:08 +0000 |
commit | b97f1cf32b47de9019f93e229207f1619b93fd49 (patch) | |
tree | df587a5731914c31887eb06aa87b06bdd3be994f /lib/rpmds.c | |
parent | 2928a5b00d55c07df73971f7d2f845bc0618380f (diff) | |
download | librpm-tizen-b97f1cf32b47de9019f93e229207f1619b93fd49.tar.gz librpm-tizen-b97f1cf32b47de9019f93e229207f1619b93fd49.tar.bz2 librpm-tizen-b97f1cf32b47de9019f93e229207f1619b93fd49.zip |
- common structure elements for unification of TFI_t and rpmFNSet.
CVS patchset: 5173
CVS date: 2001/11/11 12:47:08
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r-- | lib/rpmds.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c index 8f3c59fb2..beaf9b823 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -4,7 +4,11 @@ #include "system.h" #include <rpmlib.h> +#ifdef DYING #include "rpmds.h" +#else +#include "depends.h" /* XXX rpmTransactionType */ +#endif #include "debug.h" @@ -167,7 +171,9 @@ fprintf(stderr, "*** fi %p\t%s[%d]\n", fns, fns->Type, fns->fc); /*@=branchstate@*/ exit: + /*@-nullstate@*/ /* FIX: TFI/rpmFNSet null annotations */ return rpmfnsLink(fns, (fns ? fns->Type : NULL)); + /*@=nullstate@*/ } /*@access rpmDepSet @*/ |