summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-10-15 01:59:04 +0200
committerDan McGee <dan@archlinux.org>2011-10-21 18:12:00 +0200
commit6f2faf16bac6976423124b77b0b134ebcfae6822 (patch)
treea77713f70093cabfb85ed82f863eeac4780b6940 /src
parente47eb9a7776f529a2c30936c468a5ee0601cfa47 (diff)
downloadpacman-6f2faf16bac6976423124b77b0b134ebcfae6822.tar.gz
pacman-6f2faf16bac6976423124b77b0b134ebcfae6822.tar.xz
sync: dont group sync records by repository
Break out the logic of finding payloads into a separate static function to avoid nesting mayhem. After gathering all the records, download them all at once. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/callback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index d8564553..6f39013f 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -231,7 +231,7 @@ void cb_event(alpm_event_t event, void *data1, void *data2)
fputs((const char *)data1, stdout);
break;
case ALPM_EVENT_RETRIEVE_START:
- printf(_(":: Retrieving packages from %s...\n"), (char *)data1);
+ printf(_(":: Retrieving packages ...\n"));
break;
case ALPM_EVENT_DISKSPACE_START:
if(config->noprogressbar) {