summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-21 09:16:26 +0100
committerDan McGee <dan@archlinux.org>2007-02-21 09:16:26 +0100
commit829ac8369b49219c988bb7553a3093615ddcb76d (patch)
treee64987338f46550d29e62e784815dc011418d3ee /src
parent360565662c329f73ba6ff109b560fa5030b0cee2 (diff)
downloadpacman-829ac8369b49219c988bb7553a3093615ddcb76d.tar.gz
pacman-829ac8369b49219c988bb7553a3093615ddcb76d.tar.xz
* Slight message change for consistancy- add a ' ' (space char) at the
beginning to match the way other repos are displayed. * TODO updates.
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index ec42bce2..3a06e6ce 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -39,6 +39,8 @@
#include <alpm.h>
#include <alpm_list.h>
#include <download.h> /* downloadLastErrString */
+/* TODO remove above download.h inclusion once we abstract more, and also
+ * remove it from Makefile.am on the pacman side */
/* pacman */
#include "util.h"
#include "log.h"
@@ -660,7 +662,7 @@ int pacman_sync(alpm_list_t *targets)
packages = alpm_trans_get_packages();
if(packages == NULL) {
/* nothing to do: just exit without complaining */
- MSG(NL, _("local database is up to date\n"));
+ MSG(NL, _(" local database is up to date\n"));
goto cleanup;
}