summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-01-12 03:16:54 +0100
committerDan McGee <dan@archlinux.org>2011-01-12 04:15:04 +0100
commit9a82cb92a446bce05186460bc5b5b12c4df7e5a1 (patch)
tree3c795e132c429bc15f7ac5504bcaf708e7b09371 /src
parenta9cbd15260b396c38b7d5ffe5669994e65f9a86f (diff)
downloadpacman-9a82cb92a446bce05186460bc5b5b12c4df7e5a1.tar.gz
pacman-9a82cb92a446bce05186460bc5b5b12c4df7e5a1.tar.xz
Small fix to download size lookup and a logger
These were just two small things I came across today and found could be fixed or helpful, so I've added them and I'm not sure what else to bundle them with. commit_count++ Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c
index fbc1a184..d91d1d43 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -523,7 +523,9 @@ void display_targets(const alpm_list_t *pkgs, int install)
for(i = pkgs; i; i = alpm_list_next(i)) {
pmpkg_t *pkg = alpm_list_getdata(i);
- dlsize += alpm_pkg_download_size(pkg);
+ if(install) {
+ dlsize += alpm_pkg_download_size(pkg);
+ }
isize += alpm_pkg_get_isize(pkg);
/* print the package size with the output if ShowSize option set */