summaryrefslogtreecommitdiffstats
path: root/src/pacman/files.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/files.c')
-rw-r--r--src/pacman/files.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pacman/files.c b/src/pacman/files.c
index 5240c071..692fcd56 100644
--- a/src/pacman/files.c
+++ b/src/pacman/files.c
@@ -77,8 +77,10 @@ static int files_fileowner(alpm_list_t *syncs, alpm_list_t *targets) {
if(config->op_f_machinereadable) {
print_line_machinereadable(repo, pkg, filename);
} else if(!config->quiet) {
- printf(_("%s is owned by %s/%s %s\n"), filename,
- alpm_db_get_name(repo), alpm_pkg_get_name(pkg),
+ const colstr_t *colstr = &config->colstr;
+ printf(_("%s is owned by %s%s/%s%s %s%s\n"), filename,
+ colstr->repo, alpm_db_get_name(repo), colstr->title,
+ alpm_pkg_get_name(pkg), colstr->version,
alpm_pkg_get_version(pkg));
} else {
printf("%s/%s\n", alpm_db_get_name(repo), alpm_pkg_get_name(pkg));