summaryrefslogtreecommitdiff
path: root/src/database.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2013-06-19 20:55:01 +0300
committerTimo Teräs <timo.teras@iki.fi>2013-06-19 20:56:18 +0300
commit6da083fc24e4f1ef0363957074148d1bc11cef83 (patch)
tree7c6e6e08c7f1506dbdcc3404ac6f03e2bd498a76 /src/database.c
parente4c65886dd1758657ccf58e14523c2da57f2c98a (diff)
downloadapk-tools-6da083fc24e4f1ef0363957074148d1bc11cef83.tar.gz
apk-tools-6da083fc24e4f1ef0363957074148d1bc11cef83.tar.bz2
apk-tools-6da083fc24e4f1ef0363957074148d1bc11cef83.tar.xz
apk-tools-6da083fc24e4f1ef0363957074148d1bc11cef83.zip
all: few behavioural regression fixes
Wildcard matching with no names should match all packages only for info and search applet. "apk del" would otherwise try to delete everything, etc. Fix also interactive mode to ask questions only if we are actually changing something.
Diffstat (limited to 'src/database.c')
-rw-r--r--src/database.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/database.c b/src/database.c
index 72e568d..2360bda 100644
--- a/src/database.c
+++ b/src/database.c
@@ -2741,6 +2741,8 @@ void apk_name_foreach_matching(struct apk_database *db, struct apk_string_array
};
if (filter == NULL || filter->num == 0) {
+ if (!(match & APK_FOREACH_NULL_MATCHES_ALL))
+ return;
apk_string_array_init(&mctx.filter);
goto all;
}