summaryrefslogtreecommitdiffstats
path: root/src/package.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2011-01-01 16:04:42 +0200
committerTimo Teräs <timo.teras@iki.fi>2011-01-01 16:04:42 +0200
commit65826761508d1b9effd62e7665d6db23b6fabe2f (patch)
tree24b2e7ef0f5d127f1bf4872dbf98922fd208e9b3 /src/package.c
parent59d222d58c003f4eb564edcc1d01c5b40690938c (diff)
downloadapk-tools-65826761508d1b9effd62e7665d6db23b6fabe2f.tar.bz2
apk-tools-65826761508d1b9effd62e7665d6db23b6fabe2f.tar.xz
various: use APK_DEPMASK_REQUIRE where applicable
.. instead of the longer flag combo.
Diffstat (limited to 'src/package.c')
-rw-r--r--src/package.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/package.c b/src/package.c
index d79fc4a..dfd9cc9 100644
--- a/src/package.c
+++ b/src/package.c
@@ -193,7 +193,7 @@ int apk_dep_from_blob(struct apk_dependency *dep, struct apk_database *db,
{
struct apk_name *name;
apk_blob_t bname, bop, bver = APK_BLOB_NULL;
- int mask = APK_VERSION_LESS | APK_VERSION_EQUAL | APK_VERSION_GREATER;
+ int mask = APK_DEPMASK_REQUIRE;
/* [!]name[<,<=,=,>=,>]ver */
if (blob.ptr[0] == '!') {