diff options
author | Allan McRae <allan@archlinux.org> | 2011-06-28 14:11:43 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-06-28 14:16:12 +1000 |
commit | 939d5a9511b2dcbb07390ecfcd23528d8034709b (patch) | |
tree | 93487183da9dfdad8c33c7fa8f6929fd810a1c29 /src/pacman/conf.c | |
parent | 64c1cf792184661a1d3dd73329f129172e688f17 (diff) |
Rename pmdb_t to alpm_db_t
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/conf.c')
-rw-r--r-- | src/pacman/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 0e7429eb..d3dbc9da 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -378,7 +378,7 @@ static int _parse_options(const char *key, char *value, return 0; } -static int _add_mirror(pmdb_t *db, char *value) +static int _add_mirror(alpm_db_t *db, char *value) { const char *dbname = alpm_db_get_name(db); /* let's attempt a replacement for the current repo */ @@ -535,7 +535,7 @@ static int finish_section(struct section_t *section, int parse_options) { int ret = 0; alpm_list_t *i; - pmdb_t *db; + alpm_db_t *db; pm_printf(PM_LOG_DEBUG, "config: finish section '%s'\n", section->name); |