diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-07-07 09:27:56 +0300 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-07-07 09:27:56 +0300 |
commit | 1a54de02b585e58511a3db4171ccabb3a3a0cce0 (patch) | |
tree | 96200280d5f3200257bd28f81b1f25f1252ef0c6 /src/cache.c | |
parent | 4d940c7932c32ed6885c72b5a2e70101b018ad8c (diff) | |
download | apk-tools-1a54de02b585e58511a3db4171ccabb3a3a0cce0.tar.gz apk-tools-1a54de02b585e58511a3db4171ccabb3a3a0cce0.tar.bz2 apk-tools-1a54de02b585e58511a3db4171ccabb3a3a0cce0.tar.xz apk-tools-1a54de02b585e58511a3db4171ccabb3a3a0cce0.zip |
db: open flags revisited
more fine grained control what to load, and rename some of the
flags to be shorter.
Diffstat (limited to 'src/cache.c')
-rw-r--r-- | src/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c index 152008b..e368cb3 100644 --- a/src/cache.c +++ b/src/cache.c @@ -117,7 +117,7 @@ static int cache_main(void *ctx, int argc, char **argv) return -100; r = apk_db_open(&db, apk_root, - (actions & CACHE_DOWNLOAD) ? 0 : APK_OPENF_EMPTY_STATE); + (actions & CACHE_DOWNLOAD) ? 0 : APK_OPENF_NO_STATE); if (r != 0) return r; |