summaryrefslogtreecommitdiff
path: root/lib/rpmds.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-11-08 22:04:35 +0000
committerjbj <devnull@localhost>2001-11-08 22:04:35 +0000
commiteb10f05b8587e931bd261e99241cac2b8649d4dc (patch)
tree13cb226632a5a71ec17723e78f0e8d18dee12242 /lib/rpmds.h
parent0467af9ab587ca2f8bcb376d53a30d7857d7809a (diff)
downloadlibrpm-tizen-eb10f05b8587e931bd261e99241cac2b8649d4dc.tar.gz
librpm-tizen-eb10f05b8587e931bd261e99241cac2b8649d4dc.tar.bz2
librpm-tizen-eb10f05b8587e931bd261e99241cac2b8649d4dc.zip
- rip out rpmDependencyConflict, replace with rpmProblem instead.
CVS patchset: 5162 CVS date: 2001/11/08 22:04:35
Diffstat (limited to 'lib/rpmds.h')
-rw-r--r--lib/rpmds.h17
1 files changed, 2 insertions, 15 deletions
diff --git a/lib/rpmds.h b/lib/rpmds.h
index 5441a9a29..904456ea2 100644
--- a/lib/rpmds.h
+++ b/lib/rpmds.h
@@ -8,19 +8,6 @@
/**
*/
-typedef /*@abstract@*/ struct problemsSet_s * problemsSet;
-
-/**
- * Problems encountered while checking dependencies.
- */
-struct problemsSet_s {
- rpmDependencyConflict problems; /*!< Problems encountered. */
- int num; /*!< No. of problems found. */
- int alloced; /*!< No. of problems allocated. */
-} ;
-
-/**
- */
typedef /*@abstract@*/ struct rpmFNSet_s * rpmFNSet;
/**
@@ -227,9 +214,9 @@ int dsCompare(const rpmDepSet A, const rpmDepSet B)
/**
* Report a Requires: or Conflicts: dependency problem.
*/
-void dsProblem(problemsSet psp, Header h, const rpmDepSet ds,
+void dsProblem(rpmProblemSet tsprobs, Header h, const rpmDepSet ds,
/*@only@*/ /*@null@*/ const fnpyKey * suggestedKeys)
- /*@modifies psp, h @*/;
+ /*@modifies tsprobs, h @*/;
/**
* Compare package provides dependencies from header with a single dependency.