summaryrefslogtreecommitdiffstats
path: root/src/pacman/query.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/query.c')
-rw-r--r--src/pacman/query.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/pacman/query.c b/src/pacman/query.c
index 2b9ee7a6..bdcfc3c1 100644
--- a/src/pacman/query.c
+++ b/src/pacman/query.c
@@ -233,7 +233,15 @@ targcleanup:
static int query_search(alpm_list_t *targets)
{
alpm_db_t *db_local = alpm_get_localdb(config->handle);
- return dump_pkg_search(db_local, targets, 0);
+ int ret = dump_pkg_search(db_local, targets, 0);
+ if(ret == -1) {
+ alpm_errno_t err = alpm_errno(config->handle);
+ pm_printf(ALPM_LOG_ERROR, "search failed: %s\n", alpm_strerror(err));
+ return 1;
+ }
+
+ return ret;
+
}
static unsigned short pkg_get_locality(alpm_pkg_t *pkg)