summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2012-07-09 16:03:20 +0200
committerAllan McRae <allan@archlinux.org>2013-09-04 01:51:20 +0200
commit61e806b96a8828152e78ab9eff03c490a23b22e9 (patch)
tree5e8a8b94fba1b19067050d8901499a250e449e5f /src
parentc0ee713704d058bac560172544d6bdef5414fe4e (diff)
downloadpacman-61e806b96a8828152e78ab9eff03c490a23b22e9.tar.gz
pacman-61e806b96a8828152e78ab9eff03c490a23b22e9.tar.xz
pactree: set full usage on DBs when registering
Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/util/pactree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/pactree.c b/src/util/pactree.c
index 3d55d9f1..7813267d 100644
--- a/src/util/pactree.c
+++ b/src/util/pactree.c
@@ -211,7 +211,8 @@ static int register_syncs(void)
section = strndup(&line[1], linelen - 2);
if(section && strcmp(section, "options") != 0) {
- alpm_register_syncdb(handle, section, level);
+ alpm_db_t *db = alpm_register_syncdb(handle, section, level);
+ alpm_db_set_usage(db, ALPM_DB_USAGE_ALL);
}
}
}