diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-01-06 19:44:54 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-01-06 21:23:26 +0200 |
commit | 6b2b9d303e61599d566a70b6e3100b9afe400d4b (patch) | |
tree | 764692ed7c35e6287f703a5a66f672e159d96be7 /src/apk_package.h | |
parent | 354b6e4631be03ef914fec2a0dee7ef223adf9bc (diff) | |
download | apk-tools-6b2b9d303e61599d566a70b6e3100b9afe400d4b.tar.gz apk-tools-6b2b9d303e61599d566a70b6e3100b9afe400d4b.tar.bz2 apk-tools-6b2b9d303e61599d566a70b6e3100b9afe400d4b.tar.xz apk-tools-6b2b9d303e61599d566a70b6e3100b9afe400d4b.zip |
db: restructure in-memory organization
Diffstat (limited to 'src/apk_package.h')
-rw-r--r-- | src/apk_package.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apk_package.h b/src/apk_package.h index fdfe5b7..1978aca 100644 --- a/src/apk_package.h +++ b/src/apk_package.h @@ -59,7 +59,7 @@ struct apk_package { /* for installed packages only */ struct list_head installed_pkgs_list; - struct hlist_head owned_files; + struct hlist_head owned_dirs; struct hlist_head scripts; }; APK_ARRAY(apk_package_array, struct apk_package *); |