summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-06-24 11:11:38 +0200
committerDan McGee <dan@archlinux.org>2011-06-24 11:11:38 +0200
commit4f8ae2bab61c8fc678589c6840d44977c82d4cc2 (patch)
treeaec21e9a271a51b419ce681f82f8e1753c949b2f /src
parent7b8f8f69f14dac2bbcd7e96fc548aa084be7cd8e (diff)
downloadpacman-4f8ae2bab61c8fc678589c6840d44977c82d4cc2.tar.gz
pacman-4f8ae2bab61c8fc678589c6840d44977c82d4cc2.tar.xz
Don't require a transaction for sync DB updates
Instead, just do the required locking directly in the backend in calls to alpm_db_update(). Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 6c86bd10..f242c827 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -283,10 +283,6 @@ static int sync_synctree(int level, alpm_list_t *syncs)
alpm_list_t *i;
int success = 0, ret;
- if(trans_init(0) == -1) {
- return 0;
- }
-
for(i = syncs; i; i = alpm_list_next(i)) {
pmdb_t *db = alpm_list_getdata(i);
@@ -302,9 +298,6 @@ static int sync_synctree(int level, alpm_list_t *syncs)
}
}
- if(trans_release() == -1) {
- return 0;
- }
/* We should always succeed if at least one DB was upgraded - we may possibly
* fail later with unresolved deps, but that should be rare, and would be
* expected