diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-10-14 19:59:04 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-10-21 11:12:00 -0500 |
commit | 6f2faf16bac6976423124b77b0b134ebcfae6822 (patch) | |
tree | a77713f70093cabfb85ed82f863eeac4780b6940 /src | |
parent | e47eb9a7776f529a2c30936c468a5ee0601cfa47 (diff) | |
download | 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.c | 2 |
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) { |