From 42ab639bf715cbacb3598b6c42388ba4bbb2d3d4 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 18 Oct 2010 16:39:04 -0500 Subject: Improve database server API Currently we have one call that has all sorts of crazy behavior and doesn't make a whole lot of sense. Go from one method to the normal four methods we have for all of our other lists we use in the library to make it a lot easier for a frontend to manipulate server lists. Signed-off-by: Dan McGee --- src/pacman/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 2ce73b64..4302ad95 100644 --- a/src/pacman/conf.c +++ b/src/pacman/conf.c @@ -387,7 +387,7 @@ static int _add_mirror(pmdb_t *db, char *value) server = temp; } - if(alpm_db_setserver(db, server) != 0) { + if(alpm_db_add_server(db, server) != 0) { /* pm_errno is set by alpm_db_setserver */ pm_printf(PM_LOG_ERROR, _("could not add server URL to database '%s': %s (%s)\n"), dbname, server, alpm_strerrorlast()); -- cgit v1.2.3-24-g4f1b