diff options
author | Florian Festi <ffesti@redhat.com> | 2010-05-05 12:49:16 +0200 |
---|---|---|
committer | Florian Festi <ffesti@redhat.com> | 2010-05-06 16:07:56 +0200 |
commit | 70e9b035ff33d649adb32028258f9676fc12d126 (patch) | |
tree | 29cef3fb0264af8a7c96cd093ca73e8f4c3965fe /lib/rpmts_internal.h | |
parent | 9fad36f0eddb5d2d63cba6656978c68d7b5b715d (diff) | |
download | librpm-tizen-70e9b035ff33d649adb32028258f9676fc12d126.tar.gz librpm-tizen-70e9b035ff33d649adb32028258f9676fc12d126.tar.bz2 librpm-tizen-70e9b035ff33d649adb32028258f9676fc12d126.zip |
Convert tsmem->removedPackages to a hash table and remove rpmdbPruneIterator from the API
Diffstat (limited to 'lib/rpmts_internal.h')
-rw-r--r-- | lib/rpmts_internal.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/rpmts_internal.h b/lib/rpmts_internal.h index 551cdd76b..f70401ae0 100644 --- a/lib/rpmts_internal.h +++ b/lib/rpmts_internal.h @@ -12,9 +12,7 @@ typedef struct diskspaceInfo_s * rpmDiskSpaceInfo; /* Transaction set elements information */ typedef struct tsMembers_s { - int * removedPackages; /*!< Set of packages being removed. */ - int numRemovedPackages; /*!< No. removed package instances. */ - int allocedRemovedPackages; /*!< Size of removed packages array. */ + intHash removedPackages; /*!< Set of packages being removed. */ rpmal addedPackages; /*!< Set of packages being installed. */ int numAddedPackages; /*!< No. added package instances. */ |