index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-01-13 23:01:44 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-01-15 16:05:31 +1000 |
commit | 8a434aeb4616cec416419a216a620038d98024d3 (patch) | |
tree | 2c3b78d971d13b47a276053b71954c4f9327169e | |
parent | 62c76cf82518ce5d8c69ece862108ee6256d863b (diff) |
-rw-r--r-- | lib/libalpm/sync.c | 7 |
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index 945fdb0e..17a3e8e6 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -371,7 +371,7 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data) alpm_list_t *i, *j; alpm_list_t *deps = NULL; alpm_list_t *unresolvable = NULL; - size_t from_sync = 0; + int from_sync = 0; int ret = 0; alpm_trans_t *trans = handle->trans; @@ -381,7 +381,10 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data) for(i = trans->add; i; i = i->next) { alpm_pkg_t *spkg = i->data; - from_sync += (spkg->origin == ALPM_PKG_FROM_SYNCDB); + if (spkg->origin == ALPM_PKG_FROM_SYNCDB){ + from_sync = 1; + break; + } } /* ensure all sync database are valid if we will be using them */ |