diff options
author | Timo Teräs <timo.teras@iki.fi> | 2010-06-01 15:06:48 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2010-06-01 15:06:48 +0300 |
commit | 440cffef5891dab07631e17f83845f9f95f89b0d (patch) | |
tree | 4fd6cc9016f1fad703f5272a158746f16e347336 /src/apk_state.h | |
parent | 038b672061919296b68b83a1ccead9c31b650c6c (diff) | |
download | apk-tools-440cffef5891dab07631e17f83845f9f95f89b0d.tar.gz apk-tools-440cffef5891dab07631e17f83845f9f95f89b0d.tar.bz2 apk-tools-440cffef5891dab07631e17f83845f9f95f89b0d.tar.xz apk-tools-440cffef5891dab07631e17f83845f9f95f89b0d.zip |
state: print missing package names on error
especially important if the package requested from command line
does not exist. otherwise we would not print an error at all.
Diffstat (limited to 'src/apk_state.h')
-rw-r--r-- | src/apk_state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apk_state.h b/src/apk_state.h index a862cdf..42d3f3f 100644 --- a/src/apk_state.h +++ b/src/apk_state.h @@ -27,6 +27,7 @@ struct apk_state { struct apk_database *db; struct list_head change_list_head; struct apk_package_array *conflicts; + struct apk_name_array *missing; apk_name_state_t name[]; }; |