summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pacman/add.c14
-rw-r--r--src/pacman/sync.c13
2 files changed, 3 insertions, 24 deletions
diff --git a/src/pacman/add.c b/src/pacman/add.c
index d5d83d28..39da624b 100644
--- a/src/pacman/add.c
+++ b/src/pacman/add.c
@@ -117,8 +117,6 @@ int pacman_add(alpm_list_t *targets)
/* Step 2: "compute" the transaction based on targets and flags */
/* TODO: No, compute nothing. This is stupid. */
if(alpm_trans_prepare(&data) == -1) {
- long long *pkgsize, *freespace;
-
fprintf(stderr, _("error: failed to prepare transaction (%s)\n"),
alpm_strerror(pm_errno));
switch(pm_errno) {
@@ -173,18 +171,6 @@ int pacman_add(alpm_list_t *targets)
}
printf(_("\nerrors occurred, no packages were upgraded.\n"));
break;
- /* TODO This is gross... we should not return these values in the same
- * list we would get conflicts and such with... it's just silly
- */
- case PM_ERR_DISK_FULL:
- i = data;
- pkgsize = alpm_list_getdata(i);
- i = alpm_list_next(i);
- freespace = alpm_list_getdata(i);
- printf(_(":: %.1f MB required, have %.1f MB"),
- (double)(*pkgsize / (1024.0*1024.0)),
- (double)(*freespace / (1024.0*1024.0)));
- break;
default:
break;
}
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index c2c4f37c..b36726ae 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -619,7 +619,6 @@ int pacman_sync(alpm_list_t *targets)
/* Step 2: "compute" the transaction based on targets and flags */
if(alpm_trans_prepare(&data) == -1) {
- long long *pkgsize, *freespace;
fprintf(stderr, _("error: failed to prepare transaction (%s)\n"),
alpm_strerror(pm_errno));
switch(pm_errno) {
@@ -643,7 +642,7 @@ int pacman_sync(alpm_list_t *targets)
}
printf("\n");
}
- break;
+ break;
case PM_ERR_CONFLICTING_DEPS:
for(i = data; i; i = alpm_list_next(i)) {
pmdepmissing_t *miss = alpm_list_getdata(i);
@@ -651,15 +650,9 @@ int pacman_sync(alpm_list_t *targets)
printf(_(":: %s: conflicts with %s"),
alpm_dep_get_target(miss), alpm_dep_get_name(miss));
}
- break;
- case PM_ERR_DISK_FULL:
- pkgsize = alpm_list_getdata(data);
- freespace = alpm_list_getdata(alpm_list_next(data));
- printf(_(":: %.1f MB required, have %.1f MB"),
- (double)(*pkgsize / 1048576.0), (double)(*freespace / 1048576.0));
- break;
+ break;
default:
- break;
+ break;
}
retval = 1;
goto cleanup;