From bba234a92ed9560bab1f1846870faa8303f98064 Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Tue, 18 Aug 2009 16:56:19 +0200 Subject: query.c : return 1 when no package match For example, if no package is outdated, -Qu will return 1. This implements FS#15938 Signed-off-by: Xavier Chantry Signed-off-by: Dan McGee --- src/pacman/query.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pacman/query.c b/src/pacman/query.c index 292cddfb..a9717074 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -394,6 +394,7 @@ static int display(pmpkg_t *pkg) int pacman_query(alpm_list_t *targets) { int ret = 0; + int match = 0; alpm_list_t *i; pmpkg_t *pkg = NULL; @@ -436,8 +437,12 @@ int pacman_query(alpm_list_t *targets) if(value != 0) { ret = 1; } + match = 1; } } + if(!match) { + ret = 1; + } return(ret); } @@ -471,6 +476,7 @@ int pacman_query(alpm_list_t *targets) if(value != 0) { ret = 1; } + match = 1; } if(config->op_q_isfile) { @@ -479,6 +485,10 @@ int pacman_query(alpm_list_t *targets) } } + if(!match) { + ret = 1; + } + return(ret); } -- cgit v1.2.3-24-g4f1b