diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-14 04:52:17 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-14 04:52:17 +0000 |
commit | 7e6350a9af9a9c731ffc29fe8a2167a13553ec7b (patch) | |
tree | f3ce28c247cfd9bae01f0e6d3cff7594e1c0e023 /src | |
parent | d871b841fb853e479482b86ec42fcfae815e4ced (diff) | |
download | pacman-7e6350a9af9a9c731ffc29fe8a2167a13553ec7b.tar.xz |
* Updated a too-verbose message in pacman/add.c. (shouldn't be an issue withi
translations, but may want to update at some point)
* More libalpm/conflict.c changes. Optimized more, hopefully won't need too
much more than this.
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/add.c b/src/pacman/add.c index 6bed818b..acfbe096 100644 --- a/src/pacman/add.c +++ b/src/pacman/add.c @@ -124,7 +124,7 @@ int pacman_add(alpm_list_t *targets) pmconflict_t *conflict = alpm_list_getdata(i); switch(alpm_conflict_get_type(conflict)) { case PM_CONFLICT_TYPE_TARGET: - MSG(NL, _("%s%s exists in \"%s\" (target) and \"%s\" (target)\n"), + MSG(NL, _("%s%s exists in both '%s' and '%s'\n"), alpm_option_get_root(), alpm_conflict_get_file(conflict), alpm_conflict_get_target(conflict), |