1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-11-04 16:45:07 -05:00

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 <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Xavier Chantry 2009-08-18 16:56:19 +02:00 committed by Dan McGee
parent 600782853a
commit bba234a92e

View File

@ -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);
}