diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-24 04:11:38 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-24 04:11:38 -0500 |
commit | 4f8ae2bab61c8fc678589c6840d44977c82d4cc2 (patch) | |
tree | aec21e9a271a51b419ce681f82f8e1753c949b2f /src/pacman/sync.c | |
parent | 7b8f8f69f14dac2bbcd7e96fc548aa084be7cd8e (diff) |
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/pacman/sync.c')
-rw-r--r-- | src/pacman/sync.c | 7 |
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 |