summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/deps.c
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-02-07 19:30:02 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-02-07 19:30:02 +0100
commitf34d895dc50e208d6d0bac1de07d790fa8ff1ac9 (patch)
treeca5224f43f67a9a8c2ab4a40cd01b78632e07d2d /lib/libalpm/deps.c
parent7fbbab643584d5fad0f3bca6cd9ff6e418f7225e (diff)
downloadpacman-f34d895dc50e208d6d0bac1de07d790fa8ff1ac9.tar.gz
pacman-f34d895dc50e208d6d0bac1de07d790fa8ff1ac9.tar.xz
code cleanup
Diffstat (limited to 'lib/libalpm/deps.c')
-rw-r--r--lib/libalpm/deps.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c
index 36eeb517..721ec21c 100644
--- a/lib/libalpm/deps.c
+++ b/lib/libalpm/deps.c
@@ -534,14 +534,6 @@ int resolvedeps(pmdb_t *local, PMList *dbs_sync, pmpkg_t *syncpkg, PMList *list,
pmdepmissing_t *miss = i->data;
pmpkg_t *sync = NULL;
- /* XXX: conflicts are now treated specially in the _add and _sync functions */
-
- /*if(miss->type == PM_DEP_TYPE_CONFLICT) {
- _alpm_log(PM_LOG_ERROR, "cannot resolve dependencies for \"%s\" (it conflict with %s)", miss->target, miss->depend.name);
- RET_ERR(???, -1);
- } else*/
-
-
/* check if one of the packages in *list already provides this dependency */
for(j = list; j && !found; j = j->next) {
pmpkg_t *sp = (pmpkg_t *)j->data;