diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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()); |