summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_package.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-06-03 19:13:22 +0200
committerDan McGee <dan@archlinux.org>2011-06-03 19:13:22 +0200
commit7f98460e37bc032b58ca7c82e70c357aa39370f8 (patch)
tree386cf7e9cd2045205458d38eeac31a43b98a987b /lib/libalpm/be_package.c
parentc47d25d74be9ce1fbbfb8577687d9f37ba38d98b (diff)
downloadpacman-7f98460e37bc032b58ca7c82e70c357aa39370f8.tar.gz
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/be_package.c')
-rw-r--r--lib/libalpm/be_package.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/be_package.c b/lib/libalpm/be_package.c
index 8da317fc..a3d5304d 100644
--- a/lib/libalpm/be_package.c
+++ b/lib/libalpm/be_package.c
@@ -32,6 +32,7 @@
#include "alpm_list.h"
#include "util.h"
#include "log.h"
+#include "handle.h"
#include "package.h"
#include "deps.h" /* _alpm_splitdep */
@@ -350,6 +351,7 @@ pmpkg_t *_alpm_pkg_load_internal(const char *pkgfile, int full,
newpkg->origin = PKG_FROM_FILE;
newpkg->origin_data.file = strdup(pkgfile);
newpkg->ops = get_file_pkg_ops();
+ newpkg->handle = handle;
if(full) {
/* "checking for conflicts" requires a sorted list, ensure that here */