summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authormorganamilo <morganamilo@gmail.com>2018-08-17 06:41:00 +0200
committerAllan McRae <allan@archlinux.org>2018-08-29 06:32:46 +0200
commit0696307a3b2e0cbde7d208eb78bbad6a9c8b336f (patch)
treea458007599b9435bc16fb5ff8f39199833e42af0 /src
parent3370c08a29a60e1cd1227d43652c22738c8e4f6e (diff)
downloadpacman-0696307a3b2e0cbde7d208eb78bbad6a9c8b336f.tar.gz
pacman-0696307a3b2e0cbde7d208eb78bbad6a9c8b336f.tar.xz
Show install status during file search
When doing "pacman -Fs", show the "[installed: version]" message just like "pacman -Ss". Signed-off-by: morganamilo <morganamilo@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/files.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pacman/files.c b/src/pacman/files.c
index d7fc5446..58cf8d3d 100644
--- a/src/pacman/files.c
+++ b/src/pacman/files.c
@@ -101,6 +101,7 @@ static int files_fileowner(alpm_list_t *syncs, alpm_list_t *targets) {
static int files_search(alpm_list_t *syncs, alpm_list_t *targets, int regex) {
int ret = 0;
+ alpm_db_t *db_local = alpm_get_localdb(config->handle);
alpm_list_t *t;
const colstr_t *colstr = &config->colstr;
@@ -157,10 +158,13 @@ static int files_search(alpm_list_t *syncs, alpm_list_t *targets, int regex) {
printf("%s/%s\n", alpm_db_get_name(repo), alpm_pkg_get_name(pkg));
} else {
alpm_list_t *ml;
- printf("%s%s/%s%s %s%s%s\n", colstr->repo, alpm_db_get_name(repo),
+ printf("%s%s/%s%s %s%s%s", colstr->repo, alpm_db_get_name(repo),
colstr->title, alpm_pkg_get_name(pkg),
colstr->version, alpm_pkg_get_version(pkg), colstr->nocolor);
+ print_installed(db_local, pkg);
+ printf("\n");
+
for(ml = match; ml; ml = alpm_list_next(ml)) {
c = ml->data;
printf(" %s\n", c);