Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Chantry <shiningxc@gmail.com>2009-08-18 17:23:47 +0200
committerDan McGee <dan@archlinux.org>2009-08-18 20:37:38 -0500
commit600782853ad5317ee51423a03487abcf34efd166 (patch)
tree43673f41610c1c1b7b7d6a84a20af1eb5e50f090
parent14a93b2e436ed19c814653c3b2b61605fd5ca156 (diff)
Quiet ShowSize with -Ss and -Qs
This fixes FS#15923 PS : duplicated code ftw Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--src/pacman/query.c2
-rw-r--r--src/pacman/sync.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/query.c b/src/pacman/query.c
index 32752ffb..292cddfb 100644
--- a/src/pacman/query.c
+++ b/src/pacman/query.c
@@ -172,7 +172,7 @@ static int query_search(alpm_list_t *targets)
}
/* print the package size with the output if ShowSize option set */
- if(config->showsize) {
+ if(!config->quiet && config->showsize) {
/* Convert byte size to MB */
double mbsize = (double)alpm_pkg_get_size(pkg) / (1024.0 * 1024.0);
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 7bfe454b..dc936219 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -308,7 +308,7 @@ static int sync_search(alpm_list_t *syncs, alpm_list_t *targets)
}
/* print the package size with the output if ShowSize option set */
- if(config->showsize) {
+ if(!config->quiet && config->showsize) {
/* Convert byte size to MB */
double mbsize = alpm_pkg_get_size(pkg) / (1024.0 * 1024.0);