From 39262acab6b956bbc4491d3b90e967a09828e732 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 2 Jul 2011 02:01:39 +1000 Subject: Prefix alpm_transflag_t members with ALPM Signed-off-by: Allan McRae --- src/pacman/database.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pacman/database.c') diff --git a/src/pacman/database.c b/src/pacman/database.c index 6b7bd4e2..5a1aa52b 100644 --- a/src/pacman/database.c +++ b/src/pacman/database.c @@ -49,9 +49,9 @@ int pacman_database(alpm_list_t *targets) return 1; } - if(config->flags & PM_TRANS_FLAG_ALLDEPS) { /* --asdeps */ + if(config->flags & ALPM_TRANS_FLAG_ALLDEPS) { /* --asdeps */ reason = ALPM_PKG_REASON_DEPEND; - } else if(config->flags & PM_TRANS_FLAG_ALLEXPLICIT) { /* --asexplicit */ + } else if(config->flags & ALPM_TRANS_FLAG_ALLEXPLICIT) { /* --asexplicit */ reason = ALPM_PKG_REASON_EXPLICIT; } else { pm_printf(ALPM_LOG_ERROR, _("no install reason specified (use -h for help)\n")); -- cgit v1.2.3-24-g4f1b