diff options
author | Allan McRae <allan@archlinux.org> | 2011-07-02 02:01:38 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-07-02 02:01:38 +1000 |
commit | eb39a9482b711d58a6c12840800f2372dee0c120 (patch) | |
tree | 0323b71b83042b3e3d66d70c94e40dbb4de35f5f /lib/libalpm/add.c | |
parent | cf1401a04d5179c89af6460b812e171cc2da19f0 (diff) | |
download | pacman-eb39a9482b711d58a6c12840800f2372dee0c120.tar.xz |
Prefix alpm_pkgreason_t members with ALPM
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/add.c')
-rw-r--r-- | lib/libalpm/add.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 702e4d63..4eca6332 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -98,7 +98,7 @@ int SYMEXPORT alpm_add_pkg(alpm_handle_t *handle, alpm_pkg_t *pkg) } /* add the package to the transaction */ - pkg->reason = PM_PKG_REASON_EXPLICIT; + pkg->reason = ALPM_PKG_REASON_EXPLICIT; _alpm_log(handle, PM_LOG_DEBUG, "adding package %s-%s to the transaction add list\n", pkgname, pkgver); trans->add = alpm_list_add(trans->add, pkg); @@ -499,9 +499,9 @@ static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg, /* we override any pre-set reason if we have alldeps or allexplicit set */ if(trans->flags & PM_TRANS_FLAG_ALLDEPS) { - newpkg->reason = PM_PKG_REASON_DEPEND; + newpkg->reason = ALPM_PKG_REASON_DEPEND; } else if(trans->flags & PM_TRANS_FLAG_ALLEXPLICIT) { - newpkg->reason = PM_PKG_REASON_EXPLICIT; + newpkg->reason = ALPM_PKG_REASON_EXPLICIT; } if(oldpkg) { |