From 8fa02036c3175f4cb1e837b6da5281520524ccba Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Sun, 1 Nov 2015 13:56:38 -0500 Subject: files_search: reset found for each target Otherwise any invalid targets following a successful match will not get an error message. Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- src/pacman/files.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/pacman/files.c b/src/pacman/files.c index 5baf5e57..fb2f997e 100644 --- a/src/pacman/files.c +++ b/src/pacman/files.c @@ -206,10 +206,11 @@ static void dump_file_list(alpm_pkg_t *pkg) { static int files_list(alpm_list_t *syncs, alpm_list_t *targets) { alpm_list_t *i, *j; - int ret = 0, found = 0; + int ret = 0; if(targets != NULL) { for(i = targets; i; i = alpm_list_next(i)) { + int found = 0; char *targ = i->data; char *repo = NULL; char *c = strchr(targ, '/'); -- cgit v1.2.3-24-g4f1b