diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-03 12:13:22 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-03 12:13:22 -0500 |
commit | 7f98460e37bc032b58ca7c82e70c357aa39370f8 (patch) | |
tree | 386cf7e9cd2045205458d38eeac31a43b98a987b /lib/libalpm/package.h | |
parent | c47d25d74be9ce1fbbfb8577687d9f37ba38d98b (diff) | |
download | pacman-7f98460e37bc032b58ca7c82e70c357aa39370f8.tar.xz |
Add handle attribute to pmpkg_t struct
Similar to what we just did for the database; this will make it easy to
always know what handle a given package originated from.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r-- | lib/libalpm/package.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index debb239c..4e2dcf3d 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -110,6 +110,7 @@ struct __pmpkg_t { int scriptlet; pmpkgreason_t reason; + pmdbinfrq_t infolevel; pmpkgfrom_t origin; /* origin == PKG_FROM_FILE, use pkg->origin_data.file * origin == PKG_FROM_*DB, use pkg->origin_data.db */ @@ -117,7 +118,7 @@ struct __pmpkg_t { pmdb_t *db; char *file; } origin_data; - pmdbinfrq_t infolevel; + pmhandle_t *handle; alpm_list_t *licenses; alpm_list_t *replaces; |