index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-04-06 19:49:41 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-04-06 19:49:41 -0500 |
commit | 404e0a0e10c1fbf9732f32a8c4bd466b026c34b1 (patch) | |
tree | 988e1184887b7458a8a93fa62a3e3b257df31691 | |
parent | 073bac794d7643fae21dacbe3d5c1585ce347bea (diff) |
-rw-r--r-- | src/pacman/query.c | 11 |
diff --git a/src/pacman/query.c b/src/pacman/query.c index 90ff3773..b40359ed 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -1,7 +1,7 @@ /* * query.c * - * Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org> + * Copyright (c) 2002-2008 by Judd Vinet <jvinet@zeroflux.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -119,8 +119,13 @@ static int query_fileowner(alpm_list_t *targets) free(pdname); if(ppath && strcmp(ppath, rpath) == 0) { - printf(_("%s is owned by %s %s\n"), filename, - alpm_pkg_get_name(info), alpm_pkg_get_version(info)); + if (!config->quiet) { + printf(_("%s is owned by %s %s\n"), filename, + alpm_pkg_get_name(info), alpm_pkg_get_version(info)); + } else { + printf("%s %s\n", alpm_pkg_get_name(info), + alpm_pkg_get_version(info)); + } found = 1; } free(ppath); |