mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
Merge branch 'maint'
This commit is contained in:
commit
0f3957ab48
@ -413,6 +413,10 @@ int _alpm_remove_packages(pmtrans_t *trans, pmdb_t *db)
|
||||
alpm_list_t *newfiles;
|
||||
_alpm_log(PM_LOG_DEBUG, "removing %d files\n", filenum);
|
||||
|
||||
/* init progress bar */
|
||||
PROGRESS(trans, PM_TRANS_PROGRESS_REMOVE_START, info->name, 0,
|
||||
pkg_count, (pkg_count - targcount + 1));
|
||||
|
||||
/* iterate through the list backwards, unlinking files */
|
||||
newfiles = alpm_list_reverse(files);
|
||||
for(lp = newfiles; lp; lp = alpm_list_next(lp)) {
|
||||
|
@ -332,7 +332,9 @@ int SYMEXPORT alpm_sync_dbtarget(char *dbname, char *target)
|
||||
if(dbs == NULL) {
|
||||
RET_ERR(PM_ERR_PKG_REPO_NOT_FOUND, -1);
|
||||
}
|
||||
return(sync_target(dbs, target));
|
||||
int ret = sync_target(dbs, target);
|
||||
alpm_list_free(dbs);
|
||||
return(ret);
|
||||
}
|
||||
|
||||
/** Add a sync target to the transaction.
|
||||
|
Loading…
Reference in New Issue
Block a user