diff options
author | Timo Teräs <timo.teras@iki.fi> | 2011-12-24 15:52:35 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2011-12-24 15:52:35 +0200 |
commit | 415e41a072231e5724c41dec0f2905af25fff821 (patch) | |
tree | 2112a92aea004855becbf3ec6f1b322206d09b13 | |
parent | d80536b750efb7a43ad6222a684b12bc5160729e (diff) | |
download | aports-415e41a072231e5724c41dec0f2905af25fff821.tar.bz2 aports-415e41a072231e5724c41dec0f2905af25fff821.tar.xz |
info: -e and -W operate on database only (repos not needed)
.. so do not load them.
-rw-r--r-- | src/info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/info.c b/src/info.c index b90fa1a1a0..9135a33bf2 100644 --- a/src/info.c +++ b/src/info.c @@ -391,9 +391,11 @@ static int info_parse(void *ctx, struct apk_db_options *dbopts, switch (optch) { case 'e': ictx->action = info_exists; + dbopts->open_flags |= APK_OPENF_NO_REPOS; break; case 'W': ictx->action = info_who_owns; + dbopts->open_flags |= APK_OPENF_NO_REPOS; break; case 'w': ictx->subaction_mask |= APK_INFO_URL; |